>  기사  >  데이터 베이스  >  Java编译时出现 No enclosing instance of type Main is accessi

Java编译时出现 No enclosing instance of type Main is accessi

WBOY
WBOY원래의
2016-06-07 15:50:031651검색

今天在编译Java程序的时候出现以下错误: No enclosing instance of type Main is accessible. Must qualify the allocation with an enclosing instance of type Main (e.g. x.new A() where x is an instance of Main). 我原来编写的源代码是这样的: publ

今天在编译Java程序的时候出现以下错误:

No enclosing instance of type Main is accessible. Must qualify the allocation with an enclosing instance of type Main (e.g. x.new A() where x is an instance of Main).


我原来编写的源代码是这样的:

public class Main 
{
class Dog //定义一个“狗类”
{
private String name;
private int weight;
public Dog(String name, int weight) 
{
this.setName(name);
this.weight = weight;
}
public int getWeight() 
{
return weight;
}
public void setWeight(int weight) 
{this.weight = weight;}
public void setName(String name)
{this.name = name;}
public String getName() 
{return name;}
}
public static void main(String[] args)
{
Dog d1 = new Dog("dog1",1);

}
}

出现这个错误的时候,我一直不太理解。

在借鉴别人的解释之后才恍然大悟。

在代码中,我的Dog类是定义在Main中的内部类。Dog内部类是动态的内部类,而我的main方法是static静态的。

就好比静态的方法不能调用动态的方法一样。

有两种解决办法:

第一种:

将内部类Dog定义成静态static的类。

第二种:

将内部类Dog在Main类外边定义。


修改后的代码:

第一种:

public class Main 
{
	public static class Dog 
	{
		private String name;
		private int weight;
		public Dog(String name, int weight) 
		{
			this.setName(name);
			this.weight = weight;
		}
		public int getWeight() 
		{
			return weight;
		}
		public void setWeight(int weight) 
		{this.weight = weight;}
		public void setName(String name)
		{this.name = name;}
		public String getName() 
		{return name;}
	}
	public static void main(String[] args)
	{
		Dog d1 = new Dog("dog1",1);	
	}
}


第二种:

public class Main 
{
	public static void main(String[] args)
	{
		Dog d1 = new Dog("dog1",1);	
	}
}

class Dog 
{
		private String name;
		private int weight;
		public Dog(String name, int weight) 
		{
			this.setName(name);
			this.weight = weight;
		}
		public int getWeight() 
		{
			return weight;
		}
		public void setWeight(int weight) 
		{this.weight = weight;}
		public void setName(String name)
		{this.name = name;}
		public String getName() 
		{return name;}
}


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.