int float double char区别
时间: 2023-04-29 14:03:37 浏览: 226
Keil MDK-ARM各种数据类型占用的字节数 char short int float double
5星 · 资源好评率100%
int, float, double 和 char 是 C++ 中的四种基本数据类型。
- int 是整型,用于存储整数。
- float 是单精度浮点型,用于存储单精度浮点数。
- double 是双精度浮点型,用于存储双精度浮点数。
- char 是字符型,用于存储一个字符。
int, float 和 double 不同的是,int 存储的是整数,而 float 和 double 存储的是小数。char 的大小是1 byte, 主要用来存储字符,如果要存储数值用 int 。而在内存占用上,int 比 float 大,double 比 float 大。
阅读全文