标签:使用 main weight 布尔值 就是 作用域 先后 程序 数值类型
1 public class Demo06 { 2 public static void main(String[] args) { 3 //int a,b,c; 4 //基本类型:四类八种 5 //int a=1,b=2,c=3;//可以使用逗号隔开但最好分三行写,要注重程序可读性,让大家读的比较顺畅。 6 int a = 1; 7 int b = 2; 8 int c = 3; 9 char d =‘X‘; 10 double p= 3.14; 11 //引用类型 12 String name = "leiwei";//英文分号结尾不写报错 13 14 } 15 }
1 public class Demo07 { 2 //类变量 static 3 static double salary = 2500; 4 5 //属性:变量 6 7 //实例变量:从属于对象;如果不自动初始化,这个类型(数值类型)的默认值是0 0.0 8 //布尔值:默认值是false 9 //除了基本类型,其余的默认值都是null 10 String name; 11 int age; 12 13 //main方法 14 public static void main(String[] args) { 15 16 //局部变量:必须声明和初始化值 17 int i = 10; 18 System.out.println(i); 19 20 //变量类型 变量名字 = new Demo07 21 Demo07 demo07 = new Demo07(); 22 System.out.println(demo07.age); //0 23 System.out.println(demo07.name);//null 24 25 //类变量 static 从属于类,随类出生,消失。 26 System.out.println(salary); 27 } 28 29 //其他方法 30 public void add() { 31 32 } 33 }
1 public class Demo08 { 2 3 //修饰符,不存在先后顺序。例如在一些游戏中定义长宽高,一些不便的量就可以把它写死,方便使用。静态的常量 4 static final double PI = 3.14; 5 6 public static void main(String[] args) { 7 System.out.println(PI); 8 9 } 10 }
标签:使用 main weight 布尔值 就是 作用域 先后 程序 数值类型
原文地址:https://www.cnblogs.com/duanfu/p/12221944.html