Local time with milliseconds

后端 未结 2 1482
悲&欢浪女
悲&欢浪女 2021-02-19 09:43

how can I get current time with library boost. I can do this:

ptime now = boost::posix_timesecond_clock::local_time();
tm d_tm = to_tm(now);

Bu

2条回答
  •  北恋
    北恋 (楼主)
    2021-02-19 10:05

    I think the code should be:

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

    I think you forget the "::" in the codes. ^_^

提交回复
热议问题