Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
编译器将 1、2、24、264 形式的文字视为 int 类型。
在声明的初始化列表中不允许缩小。
char c4 {24}; char c5 {264}; // error
为什么第一行被接受而不是第二行?