C++系统相关操作5 - 获取C++标准的版本

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。

posted @ 2024-06-24 21:39  陌尘(MoChen)  阅读(3)  评论(0编辑  收藏  举报