您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在 C++ 中,你可以使用 std::to_string
函数将数字转换为字符串,但是对于日期和时间的格式化,你需要使用其他库,如和
#include<iostream>
#include<string>
#include<chrono>
#include <iomanip>
int main() {
// 获取当前时间点
auto now = std::chrono::system_clock::now();
// 转换为 time_t 类型
std::time_t now_time_t = std::chrono::system_clock::to_time_t(now);
// 转换为 tm 结构体
std::tm* now_tm = std::localtime(&now_time_t);
// 格式化日期和时间
char formatted_time[100];
std::strftime(formatted_time, sizeof(formatted_time), "%Y-%m-%d %H:%M:%S", now_tm);
// 输出格式化后的日期和时间
std::cout << "Formatted date and time: "<< formatted_time<< std::endl;
return 0;
}
这个示例将当前日期和时间格式化为 “YYYY-MM-DD HH:MM:SS” 格式。你可以根据需要修改 strftime
函数中的格式字符串。更多关于格式字符串的信息,请参考 strftime 文档。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。