Home
/
...
/
一.基础数据类型
/
C++字节表
Search
Try Notion
C++字节表
Show All
Filter
Sort
类型
长度
默认值\字面量
Boolean(ISO C++加入)
1Bit
false
Char
8Bit
'\u0000'(null)
wchar_t
对应底层类型而变(underlying类型)
L'A' (L前缀)
char16_t
对应底层类型而变
u'A'(u前缀)
char32_t
对应底层类型而变
u'A'(U前缀)
可通过变为双引号转换为字面量数组
原始字面量
R"(...)" 或R"+*(...)*+"
byte
16Bit
(byte)0
short
(16Bit At Least)
(short)0
int
(At Least short)
0
long
(32Bit At Least)&&(At Least int)
0L
long long(可能不支持)
(64Bit At Least)&&(At Least long)
0LL
unsigened
...
...
float
32Bit at least
0.0f
double
45Bit at least && ≥ float
0.0d
e表示法...
Show All