issues
search
phymooc
/
learn-rust
0
stars
0
forks
source link
数据类型
#1
Open
phymo
opened
2 years ago
phymo
commented
2 years ago
基本类型
数值类型: 有符号整数 (i8, i16, i32, i64, isize)、 无符号整数 (u8, u16, u32, u64, usize) 、浮点数 (f32, f64)、以及有理数、复数
字符串:字符串字面量和字符串切片 &str
布尔类型: true和false
字符类型: 表示单个 Unicode 字符,存储为 4 个字节
单元类型: 即 () ,其唯一的值也是 ()
基本类型