1. 关键词
关键词:
C++ 标准库 STL 版本 指令集 跨平台
应用场景:
- 根据C++的版本决定使用不同的函数接口
- 打印系统日志。
2. sysutil.h
#pragma once
#include <cstdint>
#include <string>
namespace cutl
{
/**
* @brief Get the C++ standard library version.
*
* @return std::string the C++ standard library version.
*/
std::string cpp_stl_version();
} // namespace cutl
3. sysutil.cpp
#include <map>
#include <iostream>
#include <strutil.h>
#include <cstdlib>
#include "sysutil.h"
#include "inner/logger.h"
#include "inner/system_util.h"
#include "inner/filesystem.h"
namespace cutl
{
std::string cpp_stl_version()
{
static std::map<long, std::string> version_map = {
{199711L, "C++98"},
{201103L, "C++11"},
{201402L, "C++14"},
{201703L, "C++17"},
{202002L, "C++20"},
};
std::string stlVersion;
auto iter = version_map.find(__cplusplus);
if (iter != version_map.end())
{
stlVersion = iter->second;
}
return std::to_string(__cplusplus) + " (" + stlVersion + ")";
}
} // namespace cutl
4. 测试代码
#include "common.hpp"
#include "sysutil.h"
void TestCppStlVersion()
{
PrintSubTitle("TestCppStlVersion");
std::cout << "C++ STL version: " << cutl::cpp_stl_version() << std::endl;
}
5. 运行结果
-----------------------------------------TestCppStlVersion------------------------------------------
C++ STL version: 201103 (C++11)
6. 源码地址
更多详细代码,请查看本人写的C++ 通用工具库: common_util, 本项目已开源,代码简洁,且有详细的文档和Demo。
本文由博客一文多发平台 OpenWrite 发布!
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。