免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3493 | 回复: 4
打印 上一主题 下一主题

求教,急!c下获取系统时间(日期)的简单方法? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-03-10 15:02 |只看该作者 |倒序浏览
谢谢!

论坛徽章:
0
2 [报告]
发表于 2003-03-10 16:00 |只看该作者

求教,急!c下获取系统时间(日期)的简单方法?


  1. int GetDateYYYYMMDD()
  2. {
  3.         time_t  t;
  4.         struct  tm      tt;

  5.         time(&t);

  6. #ifdef SunOS
  7.         memcpy(&tt, localtime(&t), sizeof(struct tm));
  8. #else
  9.         localtime_r(&t, &tt);
  10. #endif

  11.         return (tt.tm_year + 1900) * 10000 + (tt.tm_mon + 1) * 100 + tt.tm_mday;
  12. }
复制代码


如果想得到时间就参考tm结构
             struct tm {
                      int     tm_sec;         /* seconds */
                      int     tm_min;         /* minutes */
                      int     tm_hour;        /* hours */
                      int     tm_mday;        /* day of the month */
                      int     tm_mon;         /* month */
                      int     tm_year;        /* year */
                      int     tm_wday;        /* day of the week */
                      int     tm_yday;        /* day in the year */
                      int     tm_isdst;       /* daylight saving time */
              };

论坛徽章:
0
3 [报告]
发表于 2003-03-11 09:28 |只看该作者

求教,急!c下获取系统时间(日期)的简单方法?

谢谢!!

论坛徽章:
0
4 [报告]
发表于 2003-03-11 10:09 |只看该作者

求教,急!c下获取系统时间(日期)的简单方法?

我记得好像有个库函数是:ctime(),可以获取当前时间的,不知道记错了没?

论坛徽章:
0
5 [报告]
发表于 2003-03-11 10:25 |只看该作者

求教,急!c下获取系统时间(日期)的简单方法?

使用ctime函数可以取得本地时间。
如:
#include <stdio.h>;
#include <time.h>;
main()
{
time_t  lt;
lt=time(NULL);
printf(ctime(&amp;lt));
}
就算可以取得当前时间。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP