本帖最后由 阳光的嘉主角 于 2014-8-15 10:44 编辑
public class Test {
public static void main(String[] args) {
}
private int x = 100; // 成员变量 / 属性 / 字段 指的都是它 名字好几个呢 // 成员变量虚拟机会添加的 默认值
// 叫函数的是它 叫方法的也是它
public void 呵呵(){
int xx = x; // 这里的xx 叫 局部变量 , 必须初始化值 什么叫初始化? 你就理解给它个默认值
System.out.println(xx);
}
public void hehe(){
}
public Test() {
System.out.println("无参构造函数");
}
public Test(int x) {
System.out.println(x);
System.out.println("有参构造函数1");
}
public Test(int x, int y, int z) {
System.out.println(x + "" + y + "" + z);
System.out.println("有参构造函数2");
}
public Test(int x, int y) {
System.out.println(x + "--" + y);
System.out.println("有参构造函数3");
}
} |