1 public class Shengmingchushihua { 2 int a;//全局变量或者实例变量 ,可以不初始化值,编译器会自动分配,int分配0,引用分配null 3 int b = 12; 4 5 public int add(){ 6 int total = 0; //total局部变量 ,必须初始化值 7 total = a+b; 8 return total; 9 } 10 }
1 public class Shengmingchushihua { 2 int a;//全局变量或者实例变量 ,可以不初始化值,编译器会自动分配,int分配0,引用分配null 3 int b = 12; 4 5 public int add(){ 6 int total = 0; //total局部变量 ,必须初始化值 7 total = a+b; 8 return total; 9 } 10 }