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 から年、月、日を取得する方法ですが、時間、分、秒を取得する方法がわかりません。助けてください。