package New; public class Person { public String name; public String sex; public int age; public Person(String a,String b,int c){ name=a; sex=b; age=c; } Person tom=new Person("tom","男",12); public static void main(String[] args){ System.out.println(tom.sex);//Problems:cant make a static reference to the non-static field p1 } }
sex是一个非静态变量,在一个静态函数里不能调用非静态变量。因为非静态变量是存活在实例中的,而静态还是则不是,即使没有实例也能被调用。