我已经对这个问题进行了研究,并试图自己解决这个问题,但没有运气。所以我决定问它。
基本信息:
有两个班级。 FBClient
和State
。在FBClient
中,我有一个类型的静态变量fbc
,一个StateManager
实例,它只有一些方法可以处理State
个东西,一些常量和两个getter 。在State
中,我正在尝试初始化BufferedImage
。
public class FBClient
{
//Static
public static FBClient fbc;
//In init method
private StateManager stateManager;
//Constants
private final int INIT_FRAME_WIDTH = 320, INIT_FRAME_HEIGHT = (INIT_FRAME_WIDTH / 4) * 3, SCALE = 3, FRAME_WIDTH = INIT_FRAME_WIDTH * SCALE, FRAME_HEIGHT = INIT_FRAME_HEIGHT * SCALE;
public static void main(String[] args)
{
try
{
//First call in exception chain:
fbc = new FBClient();
}
catch (Exception e)
{
e.printStackTrace();
System.exit(1);
}
}
private FBClient()
throws IOException
{
//Second call in exception chain:
init();
}
private void init()
throws IOException
{
stateManager = new StateManager();
//Third call in exception chain:
stateManager.addState(new MainMenu((byte) 0, "Main Menu")); //MainMenu is the subclass of State, and the constructor just calls "super(0, "Main Menu")"
}
public int getFRAME_HEIGHT()
{
return FRAME_HEIGHT;
}
public int getFRAME_WIDTH()
{
return FRAME_WIDTH;
}
}
public abstract class State
{
protected final byte ID;
protected final String NAME;
protected final BufferedImage SCREEN;
protected final Graphics2D GRAPHICS;
public State(byte id, String name)
{
this.ID = id;
this.NAME = name;
//Exception cause:
this.SCREEN = new BufferedImage(FBClient.fbc.getFRAME_WIDTH(), FBClient.fbc.getFRAME_HEIGHT(), BufferedImage.TYPE_INT_RGB);
this.GRAPHICS = SCREEN.createGraphics();
}
}
更多信息:
如果我把文字放在BufferedImage初始化中就可以了。
如果我在State
类中初始化两个变量,为它们分配文字并将这些变量放在初始化中,它就可以工作。
如果我没有为这些变量指定文字,而是将它们分配给FBClient.fbc.getFRAME_WIDTH()
和FBClient.fbc.getFRAME_HEIGHT()
,它会抛出NullPointerException
。
如果我在System.out.println(getFRAME_WIDTH + " : " + getFRAME_HEIGHT)
课程中制作FBClient
,则会正确打印出来,但如果我在State
课程中进行打印(当然在课程之前添加FBClient.fbc.
) ,它抛出一个NullPointerException
。
如果我制作FRAME_WIDTH
和FRAME_HEIGHT
常量public
,我会尝试从State
访问它们
通过执行FBClient.fbc.FRAME_WIDTH
和FRAME_HEIGHT
,它会抛出NullPointerException
。
如果我尝试直接从FBClient
类访问常量而不是getter,它仍会正确打印出来。
最后
感谢您抽出宝贵时间,如果您需要更多信息,请在评论中与我联系,我会提供。此外,如果问题构建不好/没有得到很好的解释,我会道歉。如果是这种情况,请告诉我如何改进它。而且,如果这个问题已被提出并且已经回答过一次,我很抱歉,我可能已经错过了,但正如我所说,我做了我的研究。
编辑#1
评论建议我打印出fbc
值,看它是否为空。
所以我将这行代码添加到State
构造函数中:
if(FBClient.fbc != null) System.out.println("Not null"); else System.out.println("Null");
并且,如所怀疑的,它打印出null。这是为什么?我清楚地在main
方法中初始化了变量...
答案 0 :(得分:2)
你指的是FBClient.fbc 之前它被赋值(实际上是在构造函数中,因为在构造函数完成工作后fbc得到了)。要修复它,请将static
添加到最终值,将getter设为静态并使用FBClient.getFRAME_HEIGHT()
访问它。您不需要非静态最终变量。
答案 1 :(得分:1)
您遇到问题的原因是您尝试在其构造函数调用中引用FBClient.fbc,并且该对象尚未完成自己的构造。你不是很明显你正在做这个,但是如果你按照构造函数中的代码来调用init(),它最终会调用一个State构造函数,而构造函数又会尝试使用FBClient.fbc.getFRAME_WIDTH()。
我建议你不要在FBClient构造函数中调用init()并将主方法代码更改为:
public static void main(String[] args)
{
try
{
//First call in exception chain:
fbc = new FBClient();
fbc.init();
}
catch (Exception e)
{
e.printStackTrace();
System.exit(1);
}
}
希望这有帮助。
答案 2 :(得分:0)
我认为您的FBClient.fbc
为空。