一共6种:
// 布尔
bool _bool;
// 字符型
char _char;
// 整型
int _int;
// 浮点型
float _float;
// 双浮点型
double _double;
// 宽字符型
wchar_t _wchar_t;
可以使用以下字符进行修饰:
- signed:(-N~N-1)
- unsigned:非负数(>=0)
- short
- long
一共6种:
// 布尔
bool _bool;
// 字符型
char _char;
// 整型
int _int;
// 浮点型
float _float;
// 双浮点型
double _double;
// 宽字符型
wchar_t _wchar_t;
可以使用以下字符进行修饰:
本文标题:C++自学计划-数据类型-02
本文链接:https://www.haomeiwen.com/subject/xzaahqtx.html
网友评论