出现这个错误的解决方法No enclosing instance of type 类名 is accessible. Must qualify the allocation with

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

引用https://www.cnblogs.com/runnigwolf/p/5570810.html

举例

package collection;
import java.util.*;
/**
 *给字符串按照长度排序。 
 */
public class TreeSetTest {
public static void main(String[] args)
{
TreeSet ts = new TreeSet(new StraComparator());

ts.add("abhd");
ts.add("hd");
ts.add("aabhd");
ts.add("bhd");  
ts.add("d");

Iterator it = ts.iterator();
while(it.hasNext())
{
System.out.println(it.next());
}
}
}
class StraComparator implements Comparator
{
public int compare(Object o1,Object o2)
{
String s1 = (String)o1;     
String s2 = (String)o2;
if(s1.length()>s2.length())
return 1;
if(s1.length()==s2.length())
return 0;
return -1;

}
}

方法一:分为两个class 不用内部类

方法二:给内部类加个static,因为main方法是静态的。

 在一个类的静态成员中去访问非静态成员之所以会出错是因为在类的非静态成员不存在的时候静态成员就已经存在了,访问一个内存中不存在的东西当然会出错。






版权声明:本文为qq_41885010原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。