我是靠谱客的博主 温柔航空,最近开发中收集的这篇文章主要介绍c++标准库时间戳和字符串转换,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我们在开发中经常遇到,时间戳和字符串间的相互转换。每次都要去写一个新的,不如把日常用的记录下来,供以后直接使用。下面就是一个简单的实现。

#include <iostream>
#include <ctime>
#include <iomanip>
#include <sstream>
//字符串转时间戳
template<typename CHAR>
__time64_t Str2Timestamp(const CHAR* str, const CHAR* fmt)
{
  std::basic_istringstream<CHAR> is(str);
  std::tm tm = {};
  is >> std::get_time(&tm, fmt);

  return std::mktime(&tm);
}

//时间戳转字符串
template<typename CHAR>
std::basic_string<CHAR> Timestamp2Str(__time64_t timestamp,const CHAR* fmt)
{
  std::tm cur_tm = *(std::localtime(&timestamp));

  std::basic_ostringstream<CHAR> os;
  os << std::put_time(&cur_tm, fmt);

  return os.str();
}
//测试
int main()
{
  std::string str_timestamp = Timestamp2Str(time(NULL), "%Y:%m:%d %H:%M:%S").c_str();
  std::cout << str_timestamp << std::endl;

  std::cout << Str2Timestamp(str_timestamp.c_str(),"%Y:%m:%d %H:%M:%S") << std::endl;
}

最后

以上就是温柔航空为你收集整理的c++标准库时间戳和字符串转换的全部内容,希望文章能够帮你解决c++标准库时间戳和字符串转换所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部