问答详情
源自:8-10 Java 中的 static 使用之静态初始化块

最后一行为什么不能这样写?

public class HelloWorld {

    

    String name; // 声明变量name

String sex; // 声明变量sex

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

    

    // 构造方法

public        () { 

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

name = "tom";

}

    

    // 初始化块

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

sex = "男";

}

    

    // 静态初始化块

       { 

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方法

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

        

}

}


提问者:2013年的绿帽子 2015-05-17 19:19

个回答

  • Absolute_Duo
    2015-05-17 20:55:40
    已采纳

    public static void main(String[] args) {

            // 创建对象

    HelloWorld hello = new HelloWorld();

    // 调用对象的show方法

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

    }

    因为该方法是static静态的所以不能调用不是静态的变量

  • 无敌的大鹏鸟
    2015-07-23 17:04:02

    这么说吧,main方法就是静态方法,在静态方法main中要调用非静态方法show,就必须先创建对象然后才能调用,前面有说过。

  • Absolute_Duo
    2015-05-17 22:50:16

    哈哈慢慢来

  • Absolute_Duo
    2015-05-17 22:02:47

    public static void main(String[] args)