当前位置: 首页 > 面试题库 >

如何使用C ++ / C ++ 11打印当前时间(以毫秒为单位)

彭令秋
2023-03-14
问题内容

目前,我使用此代码

string now() {
    time_t t = time(0);
    char buffer[9] = {0};

    strftime(buffer, 9, "%H:%M:%S", localtime(&t));
    return string(buffer);
}

格式化时间。我需要加上毫秒,所以输出的格式为:16:56:12.321


问题答案:

您可以使用 Boost的Posix
Time

您可以用来boost::posix_time::microsec_clock::local_time()从微秒分辨率的时钟获取当前时间:

boost::posix_time::ptime now = boost::posix_time::microsec_clock::local_time();

然后,您可以计算当前日期的时间偏移量(由于持续时间的输出格式为<hours>:<minutes>:<seconds>.<milliseconds>,我假设它们是按当前日期偏移量计算的;如果不是,请随时为持续时间/时间间隔使用另一个
起点 ):

boost::posix_time::time_duration td = now.time_of_day();

然后你可以使用.hours().minutes().seconds()访问器来得到相应的值。
不幸的是,似乎没有.milliseconds()访问器,但是有.total_milliseconds()一个访问器。因此您可以做一些减法运算,以获取剩余的毫秒数,以便在字符串中进行格式化。

然后,您可以使用sprintf()(或者,sprintf()_s如果您对非便携式VC
++代码感兴趣)将这些字段格式化为原始char缓冲区,然后安全地将此原始C字符串缓冲区包装到健壮的便捷std::string实例中。

有关更多详细信息,请参见下面的注释代码。

控制台中的输出类似于:

11:43:52.276

样例代码:

///////////////////////////////////////////////////////////////////////////////

#include <stdio.h>      // for sprintf()

#include <iostream>     // for console output
#include <string>       // for std::string

#include <boost/date_time/posix_time/posix_time.hpp>


//-----------------------------------------------------------------------------
// Format current time (calculated as an offset in current day) in this form:
//
//     "hh:mm:ss.SSS" (where "SSS" are milliseconds)
//-----------------------------------------------------------------------------
std::string now_str()
{
    // Get current time from the clock, using microseconds resolution
    const boost::posix_time::ptime now = 
        boost::posix_time::microsec_clock::local_time();

    // Get the time offset in current day
    const boost::posix_time::time_duration td = now.time_of_day();

    //
    // Extract hours, minutes, seconds and milliseconds.
    //
    // Since there is no direct accessor ".milliseconds()",
    // milliseconds are computed _by difference_ between total milliseconds
    // (for which there is an accessor), and the hours/minutes/seconds
    // values previously fetched.
    //
    const long hours        = td.hours();
    const long minutes      = td.minutes();
    const long seconds      = td.seconds();
    const long milliseconds = td.total_milliseconds() -
                              ((hours * 3600 + minutes * 60 + seconds) * 1000);

    //
    // Format like this:
    //
    //      hh:mm:ss.SSS
    //
    // e.g. 02:15:40:321
    //
    //      ^          ^
    //      |          |
    //      123456789*12
    //      ---------10-     --> 12 chars + \0 --> 13 chars should suffice
    //  
    // 
    char buf[40];
    sprintf(buf, "%02ld:%02ld:%02ld.%03ld", 
        hours, minutes, seconds, milliseconds);

    return buf;
}

int main()
{
    std::cout << now_str() << '\n';    
}

///////////////////////////////////////////////////////////////////////////////


 类似资料:
  • 问题内容: 在我可以设置例如 是否有任何符号(%something)以毫秒为单位返回当前时间? 问题答案: 没有完全符合您需要的Log4J符号。 以给定的模式返回当前日期,该模式由(放在方括号之间的模式)定义,但是没有给您以毫秒为单位的时间。 给出自 执行开始以来的 毫秒数。 实现所需目标的一种可能方法是扩展Log4j的行为,这要复杂得多,但是如果绝对必要,请按以下步骤进行: 自定义log4j(编

  • 问题内容: 我有这个程序可以打印2个不同实例之间的时间差,但是它以秒为单位打印。我想以毫秒为单位打印它,以纳秒为单位打印另一个。 我该怎么做? 问题答案: 首先阅读time(7)手册页。 然后,您可以使用clock_gettime(2) syscall(您可能需要链接才能获取它)。 所以你可以尝试 即使硬件计时器具有纳秒级的分辨率,也不要期望它们具有纳秒级的精度。并且不要尝试测量持续时间少于几毫秒

  • 问题内容: 我的时间以毫秒为单位,我需要将其转换为ZonedDateTime对象。 我有以下代码 线 给我一个错误,说未为类型LocalDateTime定义方法millsToLocalDateTime 问题答案: 并且是不同的。 如果需要,您可以按照以下方式进行操作:

  • 在Java中,我们可以使用以毫秒为单位获取自epoch时间以来的当前时间戳,该时间戳是- 当前时间与世界协调时1970年1月1日午夜之间的差值,以毫秒为单位。

  • 问题内容: Linux中是否有shell命令来获取时间(以毫秒为单位)? 问题答案: 返回秒数+当前纳秒。 因此,这就是您所需要的。 例: 返回自纪元以来的秒数(如果有用)。

  • 问题内容: 我想以毫秒为单位,仅包含年,月和日期的当前日期。但是当我使用此代码时: 我仍然以毫秒为单位获取时间。我怎样才能解决这个问题? 问题答案: 请注意日历的时区。