gpt4 book ai didi

java - 如何修复 "Exception in thread "main“java.lang.NullPointerException”

转载 作者:行者123 更新时间:2023-12-01 12:09:39 25 4
gpt4 key购买 nike

我正在编写一个java程序,试图制作一个新面板,却搞砸了,不让我运行该程序。我回滚到它起作用的最后一点,但仍然没有效果。我不知道我哪里错了。从错误中我只能假设我在 main 方法和 makeGUI 方法之间的某个地方弄乱了你,但我看不出有什么问题。

我得到的错误是;

Exception in thread "main" java.lang.NullPointerException
at java.awt.Container.addImpl<Container.java:1090>
at java.awt.Container.add<Container.java:966>
at assignment2g2.buildGUI<assignment2g2.java:47>
at assignment2g2.<init><assignment2g2.java:31>
at assignment2g2.main<assignment2g2.java:124>

我的代码是...

import javax.swing.*;
import javax.swing.border.LineBorder;
import javax.swing.event.MouseInputListener;

import java.awt.*;
import java.awt.event.*;

public class assignment2g2 extends JFrame implements MouseInputListener {

JPanel mousePanel, actionsPanel;
JLabel mouseLabel;
JLabel topLeft,topMid,topRightMid,topRight,midLeft,midMid,midRightMid,midRight,btmLeft,btmMid,btmRightMid,btmRight;
ImageIcon circle = new ImageIcon("circle.jpg");
ImageIcon square = new ImageIcon("square.jpg");
ImageIcon triangle = new ImageIcon("triangle.jpg");

//JButton button1=new JButton("?");
//JButton button2=new JButton("?");

public assignment2g2() {


buildGUI();
buildActionsPanel();
mousePanel.add(actionsPanel);
getContentPane().add(mousePanel);

setSize(800,400);
setVisible(true);

}

public void buildGUI() {



mousePanel = new JPanel();
mousePanel.setLayout(new BorderLayout());
mousePanel.add(mouseLabel,BorderLayout.SOUTH);
mousePanel.addMouseListener(this);
mousePanel.addMouseMotionListener(this);

mouseLabel = new JLabel();
mouseLabel.setBorder(new LineBorder(Color.BLACK));
mouseLabel.setForeground(Color.RED);
mouseLabel.setText("Please select an answer");

actionsPanel = new JPanel();
actionsPanel.setLayout(new GridLayout(3,3));


}

public void buildActionsPanel() {

topLeft = new JLabel();

topMid = new JLabel();
//topMid.setIcon(circle);
topMid.setText("circle");


topRightMid = new JLabel();

topRight = new JLabel();

midLeft = new JLabel();
midLeft.setBorder(new LineBorder(Color.BLACK));
midLeft.addMouseListener(this);
midLeft.setText("Square");

midMid = new JLabel();
midMid.setBorder(new LineBorder(Color.BLACK));
midMid.addMouseListener(this);
midMid.setText("Triangle");

/*midRightMid = new JLabel();
midRightMid.setBorder(new LineBorder(Color.BLACK));
midRightMid.addMouseListener(this);
midRightMid.setText("Circle");*/

midRight = new JLabel();
midRight.setBorder(new LineBorder(Color.BLACK));
midRight.addMouseListener(this);
midRight.setText("Circle");

btmLeft = new JLabel();

btmMid = new JLabel();

btmRightMid = new JLabel();

btmRight= new JLabel();




actionsPanel.add(topLeft);
actionsPanel.add(topMid);
//actionsPanel.add(topRightMid);
actionsPanel.add(topRight);
actionsPanel.add(midLeft);
actionsPanel.add(midMid);
//actionsPanel.add(midRightMid);
actionsPanel.add(midRight);
actionsPanel.add(btmLeft);
actionsPanel.add(btmMid);
//actionsPanel.add(btmRightMid);
actionsPanel.add(btmRight);


}


public static void main(String[] args) {
new assignment2g2();
}

public void mouseClicked(MouseEvent e) {
}

public void mouseEntered(MouseEvent e) {

}

public void mouseExited(MouseEvent e) {

}






public void mousePressed(MouseEvent e) {
mouseLabel.setText("Mouse Pressed Event");
//if(e.getSource() instanceof JLabel) {
// JOptionPane.showMessageDialog(null, "Incorrect", "Incorrect", JOptionPane.INFORMATION_MESSAGE);
//}


if(e.getSource()==midRight) {
if((topMid.getText()).matches("circle")){
JOptionPane.showMessageDialog(null, "Correct", "Correct", JOptionPane.INFORMATION_MESSAGE);
//topMid.setIcon(square);
topMid.setText("square");
}
else{
JOptionPane.showMessageDialog(null, "Incorrect", "Incorrect", JOptionPane.INFORMATION_MESSAGE);
}
}
if(e.getSource()==midMid) {
if((topMid.getText()).matches("triangle")){
JOptionPane.showMessageDialog(null, "Correct", "Correct", JOptionPane.INFORMATION_MESSAGE);
//topMid.setIcon(square);
topMid.setText("circle");
}
else{
JOptionPane.showMessageDialog(null, "Incorrect", "Incorrect", JOptionPane.INFORMATION_MESSAGE);
}
}
if(e.getSource()==midLeft) {
if((topMid.getText()).matches("square")){
JOptionPane.showMessageDialog(null, "Correct", "Correct", JOptionPane.INFORMATION_MESSAGE);
//topMid.setIcon(square);
topMid.setText("triangle");
}
else{
JOptionPane.showMessageDialog(null, "Incorrect", "Incorrect", JOptionPane.INFORMATION_MESSAGE);
}
}

}

public void mouseReleased(MouseEvent e) {
}

public void mouseDragged(MouseEvent e) {
}

public void mouseMoved(MouseEvent e) {
}

}

如果有人能帮助我,那就太好了。提前抱歉,我知道代码有点乱:L

最佳答案

是因为你分配了

mousePanel.add(mouseLabel,BorderLayout.SOUTH);

在初始化 mouseLabel 之前。

mouseLabel = new JLabel();

关于java - 如何修复 "Exception in thread "main“java.lang.NullPointerException”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27338064/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com