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

被折叠的 条评论
为什么被折叠?



