コードを実行すると、次のエラーが発生します。
スレッド「メイン」での例外 java.lang.NullPointerException
at Main.drawBlock(Main.java:48)
at Main.<init>(Main.java:43)
at Main.main(Main.java:58)
これは私が描いたグラフィックのせいだと思いますが、それは今までになかった. 理由がわかりません。これが私のコードです:
Graphics2D g;
static JFrame jf = new JFrame();
Image Air;
Image Grass;
Image icon;
public Main() {
icon = new ImageIcon(this.getClass().getResource("Icon.png")).getImage();
Grass = new ImageIcon(this.getClass().getResource("Grass.png")).getImage();
Air = new ImageIcon(this.getClass().getResource("Air.png")).getImage();
jf.setIconImage(icon);
drawBlock(Air,0,0);
}
private void drawBlock(Image img, int x, int y) {
g.drawImage(img,x,y,null);
}
public static void main(String[] args) {
jf.setSize(792,528);
jf.setLocationRelativeTo(null);
jf.setDefaultCloseOperation(jf.EXIT_ON_CLOSE);
jf.setVisible(true);
jf.setTitle("Minecraft 2D Adventure");
new Main();
}}