数据类型 :Demo000_HelloWorld
记录自己学习Java的路程,希望能够坚持下去。
特别感谢B站大神 "遇见狂神说",从此篇博客开始代码从狂神说学习笔记而来。
package www.base; /** 字节和位 * 1个字节 = 8 位 1byte=8bit 11001100 * 1bit 1位 * 1Byte 1字节 * 1024B=1KB * 1024KB=1M * 1024M=1G */ /** 基本数据类型 Primitive Type * 整数 byte(1字节) < short(2字节) < int(4字节) < long(8字节) * 小数 float < double * 字符 char(2字节) / string是类,不是数据类型 * 对错 boolean(1位)*/ /** 引用类型 reference type * 类 String * 接口 * 数组 */ public class Demo000_HelloWorld { public static void main(String[] args) { String Glory="123"; long num1 = 10L; float num2 = 10F; char name1 = 'a'; String name2 = "a"; System.out.println(num1+" "+num2); System.out.println(name1+" "+name2); } }