Is there a way to write a large number in C++ source code with spaces to make it more readable?(有没有办法在 C++ 源代码中用空格编写大量数字以使其更具可读性?)
问题描述
假设我有代码:
vector<int> temp = vector<int>(1 000 000 000);
以上不会编译,因为编译器会抱怨空格.是否可以指示 C++ 在编译时省略这些空格,或者以其他方式使数字更易于阅读?
The above will not compile as the compiler will complain about the spaces. Is it possible to indicate to C++ to ommit those spaces when compiling, or otherwise make the number easier to read?
推荐答案
试试数字分隔符:
int i = 1'000'000'000;
此功能是 自 C++14 引入的.它使用单引号 ('
) 作为数字分隔符.
This feature is introduced since C++14. It uses single quote ('
) as digit separator.
另见:
- 为什么没有为 C++14 数字分隔符选择空格字符?
- 泛化 C++2000 的重载(C++ 之父 4 月的笑话)
- Why was the space character not chosen for C++14 digit separators?
- Generalizing Overloading for C++2000 (April's joke by the father of C++ himself)
这篇关于有没有办法在 C++ 源代码中用空格编写大量数字以使其更具可读性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有没有办法在 C++ 源代码中用空格编写大量数字以使其更具可读性?


基础教程推荐
- Windows Media Foundation 录制音频 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01