摘要:
class Demo03 { public static void main(String[] args) { // 数据类型转换 //小类型->大类型 自动转 double a=1; System.out.println(a); //大类型->小类型 强制类型转换 // 小类型 变量名=(小类型) 阅读全文
摘要:
class Demo02 { public static void main(String[] args) { //定义变量 数据类型 变量名=值 int a=1; float e=1.2F; double f=2.4; char g='A'; boolean h=true; System.out. 阅读全文
摘要:
class Demo01 { public static void main(String[] args) { System.out.println("Hello World!"); //单行注释 注释不进class文件 /*多行注释*/ long a=12345678901L; System.ou 阅读全文
摘要:
阅读全文