1、以前以为在C++中整型就是int,原来整型包括int、short、long、char、emun、bool。
2、整型int、short、long默认带符号型(signed)
3、带符号型signed(8位)取值范围:-127(-128)~128
无符号型unsigned(8位)取值范围:0~255
4、在嵌入式编程中,一边用unsigned整型,因为可以避免值越界导致结果为负数
1、以前以为在C++中整型就是int,原来整型包括int、short、long、char、emun、bool。
2、整型int、short、long默认带符号型(signed)
3、带符号型signed(8位)取值范围:-127(-128)~128
无符号型unsigned(8位)取值范围:0~255
4、在嵌入式编程中,一边用unsigned整型,因为可以避免值越界导致结果为负数