C++和C下时间格式化如YYYYMMDD HH:mm:mm.fff支持win和Linux

C++和C下时间格式化如YYYYMMDD HH:mm:mm.fff支持win和Linux

#ifndef  _ANJOS_KEBA_
#define _ANJOS_KEBA_

#include <string.h>
#include <iostream>
#include <stdio.h>
#include <vector>
#include <string>
#include <fstream>

#include <time.h>
#ifdef _WIN32
#include <ctime>
#include <Windows.h>
#include <cstring>
#else
#include <sys/time.h>
#endif

/**
 * 格式化字符串
 */
template< typename... Args > std::string strsprintf(const char* format, Args... args) {
	int length = std::snprintf(nullptr, 0, format, args...);
	assert(length >= 0);

	char* buf = new char[length + 1];
	std::snprintf(buf, length + 1, format, args...);

	std::string str(buf);
	delete[] buf;
	return str;
}

#ifdef _WIN32
struct timeval {
	long    tv_sec;         /* seconds */
	long    tv_usec;        /* and microseconds */
};
inline	int gettimeofday(struct timeval *tp, void* tzp){
	time_t clock;
	struct tm tm;
	SYSTEMTIME wtm;
	GetLocalTime(&wtm);
	tm.tm_year = wtm.wYear - 1900;
	tm.tm_mon = wtm.wMonth - 1;
	tm.tm_mday = wtm.wDay;
	tm.tm_hour = wtm.wHour;
	tm.tm_min = wtm.wMinute;
	tm.tm_sec = wtm.wSecond;
	tm.tm_isdst = -1;
	clock = mktime(&tm);
	tp->tv_sec = clock;
	tp->tv_usec = wtm.wMilliseconds * 1000;
	return (0);
}
#endif

inline	std::string now2str() {
	time_t tt = time(NULL);//这句返回的只是一个时间戳
	struct timeval tv;
	gettimeofday(&tv, NULL);
	tm* t = localtime(&tt);
	long milliseconds = tv.tv_usec / 1000;
	char* time_str = new char[40];
	sprintf(time_str, "%d-%02d-%02d %02d:%02d:%02d.%03ld",
		t->tm_year + 1900, t->tm_mon + 1, t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec, milliseconds);//输出格式为: 20200717 105228.302
	//delete t;
	std::string time_full_str(time_str);
	delete[] time_str;
	return time_full_str;
}

#endif

这里要特别注意,now2str()返回的是std::string格式,得用std::cout打印,若用printf打印则是乱码的,printf只支持char*打印
在这里插入图片描述

测试方法如下:

int main(void){
	std::string now = now2str();
	std::cout<<"当前时间为"<<now<<std::endl;
	printf( "当前时间=%s\r\n", now.c_str() ):
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值