为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我的这个代码中第一个构造方法内的name没有执行

public class HelloWorld {

    

    String name; // 声明变量name

String sex; // 声明变量sex

static int age;// 声明静态变量age

    // 构造方法

public void main() { 

System.out.println("通过构造方法初始化name");

name = "tom";

}

    

    // 初始化块

{

System.out.println("通过初始化块初始化sex");

sex = "男";

}

    

    // 静态初始化块

static  { 

System.out.println("通过静态初始化块初始化age");

age = 20;

}

    

public void show() {

System.out.println("姓名:" + name + ",性别:" + sex + ",年龄:" + age);

}

public static void main(String[] args) {

        

        // 创建对象

HelloWorld hello = new HelloWorld();

// 调用对象的show方法

      hello.show();  

        

}

}

执行结果:

通过静态初始化块初始化age

通过初始化块初始化sex

姓名:null,性别:男,年龄:20


正在回答

2 回答

你都没写构造方法,用的是JAVA默认的无参构造器。

加上这段就可以了

public HelloWorld(){
    this.name = "Jacky";
}


0 回复 有任何疑惑可以回复我~
#1

lychge 提问者

非常感谢!
2015-08-14 回复 有任何疑惑可以回复我~

public void main() { 

System.out.println("通过构造方法初始化name");

name = "tom";

}

也可以通过对象调用hello.main()

public void show() {

System.out.println("姓名:" + name + ",性别:" + sex + ",年龄:" + age);

}

改为:

public void show() {

System.out.println(性别:" + sex + ",年龄:" + age);

}

通过对象定义hello.show()



0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么我的这个代码中第一个构造方法内的name没有执行

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信