java 传值 两个窗口

比如A窗口里有个intx=1;然后通过A窗口里的一个按钮,用newB(),打开了B窗口,那B窗口里的intx怎么样才能接收到A窗口里那个x的值呢?就是怎么样才能把A窗口里... 比如 A窗口里有个int x =1; 然后通过A窗口里的一个按钮,用new B(),打开了B窗口,那B窗口里的int x 怎么样才能接收到A窗口里那个x的值呢?就是怎么样才能把A窗口里的x的值传给B窗口里的x? 展开
 我来答
yinfengnong
2018-04-09 · TA获得超过5619个赞
知道大有可为答主
回答量:2344
采纳率:89%
帮助的人:2279万
展开全部

下面的代码演示了两种方法传递x值到 B 窗口中,一种是通过 B 的构造方法,一种是通过 B 中的 x 的 setter 传递。

import java.awt.FlowLayout;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
 
class A extends JFrame {

private int x = 10;

public A() {

this.setTitle("A");
this.setSize(300, 200);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLayout(new FlowLayout());

JButton button = new JButton("Open B");
button.addActionListener(e -> {

// 通构造方法传递
B b = new B(this.x);

// 通过 setter 方法传递
b.setX(x);

b.setVisible(true);
});
this.add(button);
}

public int getX() {
return x;
}

public void setX(int x) {
this.x = x;
}
}

class B extends JFrame {

private int x;

public B(int x) {

this.setTitle("B");
this.setSize(300, 200);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setLayout(new FlowLayout());

this.x = x;

JButton button = new JButton("显示x的值");
button.addActionListener(e -> {
JOptionPane.showMessageDialog(this, x);
});
this.add(button);
}

public int getX() {
return x;
}

public void setX(int x) {
this.x = x;
}
}
 
public class App {
     
    public static void main(String[] args) {
         
        new A().setVisible(true);
    }
}
Q1017632646
2018-04-09 · TA获得超过345个赞
知道小有建树答主
回答量:440
采纳率:68%
帮助的人:102万
展开全部

B窗口的构造函数里增加参数啊

class B
{
    private int x;
    public B(int x)
    {
        this.x=x;
    }
}

然后new B()的时候传入参数啊。即 new B(x)

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
神牛码农
2018-04-09 · 用技术行走在移动互联网时代
神牛码农
采纳数:297 获赞数:1178

向TA提问 私信TA
展开全部
直接发给B就是了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式