求助,代码错误在哪儿?

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
	}

}
阅读 3.9k
3 个回答

sex是一个非静态变量,在一个静态函数里不能调用非静态变量。因为非静态变量是存活在实例中的,而静态还是则不是,即使没有实例也能被调用。

Person tom=new Person("tom","男",12);改为static Person tom=new Person("tom","男",12);试试

静态方法里是不能调用非静态成员的

Person tom=new Person("tom","男",12);

放到main方法里或者把tom加上static修饰符

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进