我是靠谱客的博主 不安星月,最近开发中收集的这篇文章主要介绍c/c++ 时间戳;字符串;long型数据转换,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

网上找了一堆,关于这些转换的,说的驴唇不对马嘴,各种烦躁,还有那些要求用积分兑换才能下载的,很愤怒,很气愤。

话不多说,拿走前,记得点赞,点赞越多,分享的更多。

c/c++时间字符串、时间戳、long型数据转换精华~~~~~~~~~


#include<iostream>
using namespace  std;
#include <set>
#include <map>
#include <vector>
#include <time.h>
#include <ctime>
#include <string>
#include <sstream>
#include <stdio.h>



char s[100];


time_t StringToTime(string str) {
    struct tm tm_;
    int year, month, day, hour, minute, second;
    sscanf(str.c_str(), "%d-%d-%d %d:%d:%d", &year, &month, &day, &hour, &minute, &second);
    tm_.tm_year = year - 1900;
    tm_.tm_mon = month - 1;
    tm_.tm_mday = day;
    tm_.tm_hour = hour;
    tm_.tm_min = minute;
    tm_.tm_sec = second;
    tm_.tm_isdst = 0;

    time_t timeStamp = mktime(&tm_);
    return timeStamp;
}

//拿走前,请给一个小红心,点赞一下,谢谢各位兄弟姐妹了//

int main()
{
	time_t timep;
	time(&timep);//获取time_t类型的当前时间
	char tmp[64];
	strftime(tmp, sizeof(tmp), "%Y-%m-%d %H:%M:%S", localtime(&timep));//对日期和时间进行格式化
	cout << "tmp====="<<tmp << endl;
	string str(tmp);
	cout << "(string_data_type)->str=="<<str<<endl;//字符串类型的
    cout <<"(time_t_data_type)->label=" << StringToTime(str) << endl;//time_t类型的数据
    long long b = StringToTime(str);//long 型数据,时间戳

    cout << "(long_time_type)b==" << b << endl;

	return 0;
}

最后

以上就是不安星月为你收集整理的c/c++ 时间戳;字符串;long型数据转换的全部内容,希望文章能够帮你解决c/c++ 时间戳;字符串;long型数据转换所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部