我试图找到一个线程安全的方式来获得本地时间。从boost示例中,我得到了这个:
#include "boost/date_time/posix_time/posix_time.hpp"
#include <iostream>
int
main()
{
using namespace boost::posix_time;
using namespace boost::gregorian;
//get the current time from the clock -- one second resolution
ptime now = second_clock::local_time();
//Get the date part out of the time
date today = now.date();
date tommorrow = today + days(1);
ptime tommorrow_start(tommorrow); //midnight
//iterator adds by one hour
time_iterator titr(now,hours(1));
for (; titr < tommorrow_start; ++titr) {
std::cout << to_simple_string(*titr) << std::endl;
}
time_duration remaining = tommorrow_start - now;
std::cout << "Time left till midnight: "
<< to_simple_string(remaining) << std::endl;
return 0;
}
但是我不知道它是否可以在多线程环境中使用?
是,您的平台是否支持:
从这里Date-time现在在那些支持BOOST_HAS_THREADS的平台上使用可重入POSIX函数。
BOOST_HAS_THREADS现在基本上总是定义的。如果有疑问,可以检查平台对POSIX的支持。