您的位置:首页 > 编程语言 > C语言/C++

C++基础知识

2016-03-30 17:00 183 查看

数据类型sizeof()

32位编译器

char :1个字节

char*(即指针变量): 4个字节(32位的寻址空间是2^32, 即32个bit,也就是4个字节。同理64位编译器)

short int : 2个字节

int: 4个字节

unsigned int : 4个字节

float: 4个字节

double: 8个字节

long: 4个字节

long long: 8个字节

unsigned long: 4个字节

64位编译器

char :1个字节

char*(即指针变量): 8个字节

short int : 2个字节

int: 4个字节

unsigned int : 4个字节

float: 4个字节

double: 8个字节

long: 8个字节

long long: 8个字节

unsigned long: 8个字节

运算符优先级

http://c.biancheng.net/cpp/html/462.html

const

(1)指针本身是常量不可变

(char*) const pContent;

const (char*) pContent;

(2)指针所指向的内容是常量不可变

const (char) *pContent;

(char) const *pContent;

/article/7627189.html

C++指针

http://c.biancheng.net/cpp/biancheng/cpp/rumen_6/

http://www.360doc.com/content/11/0506/22/6903212_114913991.shtml
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: