const boost::posix_time::ptime now= boost::posix_time::second_clock::local_time();
year_ = now.date().year();
month_ = now.date().month();
day_ = now.date().day();
这就是我从 boost::posix_time::ptime 中获得年、月和日的方法,但我不知道如何获得小时、分钟和秒。你能帮帮我吗?
const boost::posix_time::ptime now= boost::posix_time::second_clock::local_time();
year_ = now.date().year();
month_ = now.date().month();
day_ = now.date().day();
这就是我从 boost::posix_time::ptime 中获得年、月和日的方法,但我不知道如何获得小时、分钟和秒。你能帮帮我吗?