1.变量
1.1 C++变量类型
- 基本类型:整形和浮点型
- 复合类型:数组、字符串、指针和结构
- 变量名只能由字母、数字和下滑线组成,且不能以数字开头,区分大小写
- 不能将C++关键字用作名称
- 以两个下滑线开头(如__my)、以下滑线和大写字母开头(如_My)的名称被保留给实现(编译器及使用的资源)使用
- 以一个下滑线开头的名称(如_my)被保留给实现,用作全局标识符
- 对于名称长度没有限制
2.1 整数长度
- short至少16位
- int至少与short一样长
- long至少32位,且至少和int一样长
- long long至少64位,且至少与long一样长
#include "stdafx.h"
#include
#include
int main()
{
using namespace std;
cout << "short is " << sizeof(short) <<" Max "<
<