constexpr-to-string:C ++ 17代码在编译时将整数转换为字符串

时间:2024-04-26 04:07:34
【文件属性】:

文件名称:constexpr-to-string:C ++ 17代码在编译时将整数转换为字符串

文件大小:5KB

文件格式:ZIP

更新时间:2024-04-26 04:07:34

C++

constexpr-to-string 特征: 在编译时将任何整数类型转换为字符串 支持转换为2到36之间(包括2和36)的任意基数 没有外部依赖关系,仅包括用于模板参数检查的type_traits 支持自定义字符类型,例如to_string<123> C ++ 20:支持使用f_to_string浮点数到字符串的转换 如何使用: 文件to_string.hpp提供了to_string实用程序,可以按以下方式使用它: const char *number = to_string< 2147483648999954564>; // produces "1DCD65003B9A1884" puts (number); puts (to_string<- 42 >); // produces "-42" puts (to_string< 30 ,


【文件预览】:
constexpr-to-string-master
----f_to_string.hpp(3KB)
----to_string.hpp(3KB)
----LICENSE(1KB)
----README.md(3KB)

网友评论