boost 获取日期时间

using namespace boost::posix_time;
using namespace boost::gregorian;
time_duration hms(second_clock::local_time().time_of_day());
int hour = hms.hours();
int minutes= hms.minutes();

 

你可能感兴趣的:(boost)