标签:idt 实现 字符串转换 大小 2.0 info inf while for
1. 按数据类型分类
2. 整数类型:byte、short、int、long
3. 浮点类型:float、double
4. 字符类型:char
以上,后四种都是一样的,本质都是将Unicode编号39532赋给了字符。
char c = ‘马‘;
System.out.println(Integer.toBinaryString(c));
输出为 1001101001101100
5. 布尔类型:boolean
1. 自动类型转换:
2. 强制类型转换:
String a = "43";
int i = Integer.parseInt(a);
标签:idt 实现 字符串转换 大小 2.0 info inf while for
原文地址:https://www.cnblogs.com/wslook/p/9385282.html