变量标识、数据类型、有无符号、是否静态

//************************************************************
//变量、数据类型
//变量名是下划线、字母开头的并以且只能以下划线、字母、数字组成的标识符。区分大小写
//变量名不能使保留字名相同。例如int是保留名,不能做变量名。
//下面的都不能变量标识 Identifiers
asm, auto, bool, break, case, catch, char, class, const, const_cast, continue, default, delete, do, double, dynamic_cast, else, enum, explicit, export, extern, false, float, for, friend, goto, if, inline, int, long, mutable, namespace, new, operator, private, protected, public, register, reinterpret_cast, return, short, signed, sizeof, static, static_cast, struct, switch, template, this, throw, true, try, typedef, typeid, typename, union, unsigned, using, virtual, void, volatile, wchar_t, while 
下面的有时不能作变量名
and, and_eq, bitand, bitor, compl, not, not_eq, or, or_eq, xor, xor_eq
 
基本数据结构 Fundamental data types


NameDescriptionSize*Range*
charCharacter or small integer.1bytesigned: -128 to 127 unsigned: 0 to 255
short int(short)Short Integer.2bytessigned: -32768 to 32767 unsigned: 0 to 65535
intInteger.4bytessigned: -2147483648 to 2147483647 unsigned: 0 to 4294967295
long int (long)Long integer.4bytessigned: -2147483648 to 2147483647 unsigned: 0 to 4294967295
boolBoolean value. It can take one of two values: true or false.1bytetrue or false
floatFloating point number.4bytes+/- 3.4e +/- 38 (~7 digits)
doubleDouble precision floating point number.8bytes+/- 1.7e +/- 308 (~15 digits)
long doubleLong double precision floating point number.8bytes+/- 1.7e +/- 308 (~15 digits)
wchar_tWide character.or 4 bytes1 wide character
声明变量 Declaration of variables

unsigned short int NumberOfSisters;
signed int MyAccountBalance;

变量范围


上图少了页面范围内的static,局部内的static

变量初始化
int a = 0;
int a(0);

C和C++字符串

  
  
string mystring = "This is a string";
string mystring ("This is a string");

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值