C++ 整型常量是什么?
整型常量是无小数部分或指数的常量数据元素。它们总是以数字开头。你可以用十进制、八进制或十六进制形式指定整型常量。它们可以指定带符号或不带符号类型,以及长或短类型。
在 C++ 中,你可以使用以下代码创建整型常量 −
#include<iostream> using namespace std; int main() { const int x = 15; // 15 is decimal integer constant while x is a constant int. int y = 015; // 15 is octal integer constant while y is an int. return 0; }
你可以在 https://msdn.microsoft.com/en-us/library/00a1awxf.aspx. 上找到指定整型常量的完整语法。
广告