标签:
字符集
直接从视频里面截的,之前没搞清这些字符集的关系,也没去查,这次刚好视频里面讲到了。
整数类型和进制转换
学习了几种整型类型,以前学校学C的时候学过,内容类似,所以没遇到什么问题。
1 public class TestDataType { 2 3 public static void main(String[] args){ 4 int a = 10; 5 int a2 = 010; 6 int a3 = 0xf; 7 System.out.println(a); 8 System.out.println(a2); 9 System.out.println(a3); 10 System.out.println(Integer.toBinaryString(a)); 11 System.out.println(Integer.toOctalString(a)); 12 System.out.println(Integer.toHexString(a)); 13 } 14 }
运行结果:
当然除了int型,还有byte、long等类型。
浮点数
表示小数,分为float和double(默认)。
标签:
原文地址:http://www.cnblogs.com/poro/p/5164423.html