我是靠谱客的博主 雪白往事,最近开发中收集的这篇文章主要介绍一个实例 c++ VS2017 读取当前系统时间 以时间来命名txt文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

实例代码

#include <ctime>
#include <iostream>
#include <string>
#pragma warning(disable:4996)
using namespace std;
/*
编译时出现以下报错,
C4996 'localtime': This function or variable may be unsafe. Consider using localtime_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS
解决办法:
在头文件处,增加:#pragma warning(disable:4996)
相关的解决办法,详见以下链接
https://blog.csdn.net/weixin_40937100/article/details/88809384
*/
int main()
{
string str_year, str_mon, str_mday, str_hour, str_min, str_sec;
string str_now;
string str_filename;
time_t now = time(0);
tm *this_monent = localtime(&now);
//tm结构的变量都属于int
cout << "这一刻属于哪一年=" << 1900 + this_monent->tm_year << "n";
cout << "这一刻属于该年哪个月=" << this_monent->tm_mon << "n";
cout << "这一刻属于该月哪一日=" << this_monent->tm_mday << "

最后

以上就是雪白往事为你收集整理的一个实例 c++ VS2017 读取当前系统时间 以时间来命名txt文件的全部内容,希望文章能够帮你解决一个实例 c++ VS2017 读取当前系统时间 以时间来命名txt文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部