gpt4 book ai didi

java - (Java) 类里面的困难

转载 作者:行者123 更新时间:2023-11-30 04:52:07 26 4
gpt4 key购买 nike

enter image description here

根据上图;我希望 Frame1 使用 New(Jbutton) 显示 Frame2,并希望 Frame3 使用 Show(JButton) 显示。 Frame3 有这个默认的“Hello World”(JtextField),我想使用 Frame2 中的 Yes(JButton) 将其清空。

问题是我不知道 Frame2 的代码以及如何清空 Frame3 中的文本字段。

这是迄今为止我的代码:

Frame1.java

public class Frame1 extends JFrame implements ActionListener{

JButton b1 = new JButton("New");
JButton b2 = new JButton("Show");

Frame2 f2 = new Frame2();
Frame3 f3 = new Frame3();

public Frame1(){
setLayout(new FlowLayout());
setVisible(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(300,300);
add(b1);
add(b2);
b1.addActionListener(this);
b2.addActionListener(this);
}

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

public void actionPerformed(ActionEvent e) {
if(e.getSource()==b1){
f2.setVisible(true);
}
else{
f3.setVisible(true);
}
}
}

Frame2.java

public class Frame2 extends JFrame implements ActionListener{

JButton b1 = new JButton("Yes");
JButton b2 = new JButton("No");

public Frame2(){
setLayout(new FlowLayout());
setVisible(false);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(300,100);

add(b1);
add(b2);
}
public void actionPerformed(ActionEvent e) {
if(e.getSource()==b1){

}else{

}
}
}

Frame3.java

public class Frame3 extends JFrame{

JTextField t1 = new JTextField("Hello WOrld");

public Frame3(){
setLayout(new FlowLayout());
setVisible(false);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(200,200);

add(t1);

}

}

最佳答案

您可以只在frame2构造函数中传递对frame3的引用,然后当您单击Yes按钮时,清除frame3的JTextField

编辑

当你声明框架时,你可以先创建你的frame3并将其传递给frame2构造函数:

Frame3 f3 = new Frame3();
Frame2 f2 = new Frame2(f3);

在你的框架中2

Frame refToFrame3;
...
public Frame2(Frame f){
...
refToFrame3 = f;
...
...

public void actionPerformed(ActionEvent e) {
if(e.getSource()==b1){
refToFrame3.clearText()
...

然后在您的frame3中创建一个clearText方法来清除JTextField中的文本。

关于java - (Java) 类里面的困难,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9635361/

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