publicclass HelloWorld { String name; // 声明变量name String sex; // 声明变量sexstaticint age;// 声明静态变量age // 构造方法public HelloWorld() { System.out.println("通过构造方法初始化name"); name = "tom"; } // 初始化块 { System.out.println("通过初始化块初始化sex"); sex = "男"; } // 静态初始化块static { System.out.println("通过静态初始化块初始化age"); age = 20; } publicvoid show() { System.out.println("姓名:" + name + ",性别:" + sex + ",年龄:" + age); } publicstaticvoid main(String[] args) { // 创建对象 HelloWorld hello = new HelloWorld(); // 调用对象的show方法 hello.show();
添加回答
举报
0/150
提交
取消