c++中显示当前时间的几种方法:使用 time() 获取时间戳使用 std::chrono 类获取系统时间使用第三方库(如 boost.date_time)
如何在 C++ 中显示当前时间
在 C++ 中显示当前时间的方法有几种:
1. 使用标准库函数 time()
<code class="cpp">#include <iostream>
#include <ctime>
int main() {
time_t now = time(0);
std::cout </ctime></iostream></code>
2. 使用类 std::chrono
<code class="cpp">#include <iostream>
#include <chrono>
int main() {
auto now = std::chrono::system_clock::now();
auto time_t_now = std::chrono::system_clock::to_time_t(now);
std::cout </chrono></iostream></code>
3. 使用第三方库
有许多第三方库可以帮助你显示当前时间,例如 Boost.Date_Time:
<code class="cpp">#include <iostream>
#include <boost>
int main() {
boost::posix_time::ptime now = boost::posix_time::second_clock::local_time();
std::cout </boost></iostream></code>
以上就是c++++如何显示当前时间的详细内容,更多请关注编程网其它相关文章!