我正在尝试从我的计算器(在其自己的单独类中)中获取值到我的其他类中的JTextPane
。我唯一担心的是,由于我的程序设计,我无法这样做。
在我的主要课程中,我有一个内部类,在点击JMenuItem
时会打开另一个框架。
public class Notepad extends JFrame
{
...
// Opens when the user clicks Calculator
// (JMenuItem in the JFrame of the Notepad class)
private class Calculator implements ActionListener
{
public void actionPerformed(ActionEvent event)
{
Calculate c = new Calculate();
c.buildGUI();
// I've tried creating a reference to the Insert class and tried to
// retrieve the value from the JLabel in the Calculator but continuously
// receive a NullPointerException
}
}
...
}
在我的其他课程中,我有一个插入按钮的内部类(允许用户根据需要将答案插入JTextPane
)。
***我在这里尝试了很多东西,例如创建一个“getter”和“setter”,它将值传递到Notepad类,但发现它们由于我的程序设置而无法工作。 / p>
public class Calculate extends JFrame
{
...
/* Insert
* Inserts the answer into the
* text pane of the Notepad class
*/
private class Insert implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
String answer = proposal.getText(); // from the JLabel
if (answer.isEmpty()) JOptionPane.showMessageDialog(frame, "Enter two numbers and hit the desired operator, please");
// else, insert the answer
// ***
}
}
...
}
我的另一个问题是,当我点击记事本框架中的JMenuItem
(计算器)时,我收到NullPointerException
,因为JLabel
中没有值(答案)对于计算器)。
那么当点击插入时,如何从计算器中获取JLabel
的值并将其放入记事本框架的JTextPane
?此外,如果我的程序没有设置为执行此类操作,您是否有任何重新设计建议?
答案 0 :(得分:3)
最简单的方法是将对NotePad的引用传递给Calculator类。 Calculator类将如下所示:
public class Calculator extends JFrame{
Notepad notepad;
public Caluclator(Notepad np){
this();
notepad = np;
//any other code you need in your constructor
}
...
private class Insert implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
String answer = proposal.getText(); // from the JLabel
if (answer.isEmpty()) JOptionPane.showMessageDialog(frame, "Enter two numbers and hit the desired operator, please");
else{
notepad.myJTextPane.setText(answer);
}
// ***
}
}
并在记事本课程中调用它:
Calculate c = new Calculate(Notepad.this);
话虽如此,查找一些设计模式是个好主意,例如Observer,这些设计模式正是为了在另一个类被更改时更新一个类。