什么是C ++整数常量?
整数常数是没有小数部分或指数的常数数据元素。他们总是以数字开头。您可以以十进制,八进制或十六进制形式指定整数常量。他们可以指定有符号或无符号类型以及长或short类型。
在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/zh-cn/library/00a1awxf.aspx上找到完整的语法来指定整数常量。