博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c++ 时间与字符串转换
阅读量:6435 次
发布时间:2019-06-23

本文共 625 字,大约阅读时间需要 2 分钟。

1、时间转字符串函数size_t strftime( char *strDest, size_t maxsize, const char *format, const struct tm *timeptr );2、字符串转时间函数char *strptime(const char *s, const char *format, struct tm *tm);#include 
#include
int main(){ struct tm tm_time; strptime("2010-11-15 10:39:30", "%Y-%m-%d %H:%M:%S", &tm_time); printf("%ld/n", mktime(&tm_time)); printf("-------------------------------------/n"); char szBuf[256] = {
0}; time_t timer = time(NULL); strftime(szBuf, sizeof(szBuf), "%Y-%m-%d %H:%M:%S", localtime(&timer)); printf("%s/n", szBuf); return 0;}

 

转载地址:http://nlqga.baihongyu.com/

你可能感兴趣的文章
spring session实现集群中session共享
查看>>
Solr学习笔记——查询
查看>>
关于0基础磁盘管理(gpt UEFI...)最好的一篇文章(来自gentoo linux)
查看>>
CodeSmith 基础用法和例子
查看>>
[转]SSH反向连接及Autossh
查看>>
Wikioi 1081 线段树成段更新单点查询
查看>>
c#调用cmd
查看>>
[转]Newtonsoft JSON how to dynamically change the date format?
查看>>
双机/RAC/Dataguard的区别【转】
查看>>
数据挖掘算法学习(四)PCA算法
查看>>
mysql之 binlog维护详细解析(开启、binlog相关参数作用、mysqlbinlog解读、binlog删除)...
查看>>
RDIFramework.NET ━ .NET快速信息化系统开发框架 V3.2->新增模块管理界面导出功能(可按条件导出)...
查看>>
【Linux C 多线程编程】互斥锁与条件变量
查看>>
阿里云容器服务与ASP.NET Core部署:用 docker secrets 保存 appsettings.Production.json
查看>>
编译项目的时候,不会编译依赖的类库项目
查看>>
CSS+DIV定位分析(relative,absolute,static,fixed)
查看>>
spark中的广播变量broadcast
查看>>
如何使用spring配合mybatis配置多个数据源并应用?
查看>>
Object对象具体解释(二)之clone
查看>>
js实现svg图形转存为图片下载[转]
查看>>