Java编译错误:No enclosing instance of type AA is accessible

本文介绍了在Java中遇到的一个特定编译错误:“No enclosing instance of type CreateImageData is accessible. Must qualify the allocation with an enclosing instance of type CreateImageData”。该错误发生在尝试从静态方法中直接实例化内部类时。文章提供了两种解决方案:一是将静态方法改为非静态方法;二是修改创建内部类实例的方式。

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

问题描述:

Java编译错误“No enclosing instance of type CreateImageData is accessible. Must qualify the allocation with an enclosing instance of type CreateImageData (e.g. x.new A() where x is an instance of CreateImageData).”

代码如下:

public class CreateImageData
{
	/**
	 * @param args
	 */
	public static void main(String[] args)
	{
		...
		createImage(targetFolder, batchType, currentDay, batchFrom + i, batchSum, imageQuarryName, bpuID, tableNos);
		...
	}

	private static List<AppInfo> createImage(String targetFolder, String batchType, 
			String currentDay, int batchNum, int batchSum, String imageQuarryName, String bpuID, String[] tableNos)
	{
			......
			AppInfo appInfo = new AppInfo();

			......
		}
		return returnValue;
	}

	private class AppInfo
	{
		......
	}
}
 

 

 

问题原因:

内部类实例依存于外部类实例;外部类的static方法可以直接被调用,而不需要new外部类实例;所以在外部类的static方法中直接实例化内部类就会出现这个编译错误。

 

解决方法:

1、将static方法换成非static方法。

2、修改new内部类的对象的方法:AppInfo appInfo = new CreateImageData().new AppInfo();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值