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

本文介绍了一个使用Java TreeSet进行字符串长度排序的例子,并通过两种方法解决了内部类访问问题:一是将类定义为非内部类;二是将内部类声明为静态,以便在静态方法中正确访问。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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方法是静态的。

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





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值