如何将时间转换为纪元时间? [英] How to convert a time into epoch time?

查看:20
本文介绍了如何将时间转换为纪元时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我有一个特定的时刻,我知道时、分、日、秒、月、年等;我如何转换这个纪元时间(自 1970 年以来的秒数)?

Say I have a specific instant in time where I know the hour, minute, day, second, month, year, etc; how can I convert this epoch time (seconds since 1970)?

我不会使用 Boost,所以请不要建议 Boost 解决方案.

I can't use Boost, so please don't suggest a Boost solution.

推荐答案

使用mktime(3) 函数.例如:

Use the mktime(3) function. For example:

struct tm t = {0};  // Initalize to all 0's
t.tm_year = 112;  // This is year-1900, so 112 = 2012
t.tm_mon = 8;
t.tm_mday = 15;
t.tm_hour = 21;
t.tm_min = 54;
t.tm_sec = 13;
time_t timeSinceEpoch = mktime(&t);
// Result: 1347764053

这篇关于如何将时间转换为纪元时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆