eclipse运行代码无反应,控制台显示终止

代码如下:packageswing;importjava.awt.*;importjava.awt.event.ActionEvent;importjava.awt.ev... 代码如下:
package swing;

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.*;

@SuppressWarnings("serial")
class MyJDialog extends JDialog{
public MyJDialog(MyFrame frame){
super(frame,"窗体",true);
Container container=getContentPane();
container.add(new JLabel("对话框"));
setBounds(120,120,100,100);
}
}
@SuppressWarnings("serial")
public class MyFrame extends JFrame{
public static void main(String args[]){
new MyFrame();
}
public MyFrame(){
Container container=getContentPane();
container.setLayout(null);
JLabel jl=new JLabel("JFrame窗体");
jl.setHorizontalAlignment(SwingConstants.CENTER);
container.add(jl);
JButton bl=new JButton("弹出对话框");
bl.setBounds(10, 10, 100, 21);
bl.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
new MyJDialog(MyFrame.this).setVisible(true);
}
});
container.add(bl);
}

}
展开
 我来答
萢萢i3
推荐于2018-04-21 · TA获得超过1.3万个赞
知道大有可为答主
回答量:1.7万
采纳率:71%
帮助的人:4725万
展开全部

修改后的代码:

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.*;

@SuppressWarnings("serial")
class MyJDialog extends JDialog {
    public MyJDialog(MyFrame frame) {
        super(frame,"窗体",true);
        Container container=getContentPane();
        container.add(new JLabel("对话框"));
        setBounds(120,120,100,100);
    }
}
@SuppressWarnings("serial")
public class MyFrame extends JFrame {
    public static void main(String args[]) {
        new MyFrame();
    }
    public MyFrame() {
        Container container=getContentPane();
        container.setLayout(null);
        JLabel jl=new JLabel("JFrame窗体");
        jl.setHorizontalAlignment(SwingConstants.CENTER);
        container.add(jl);
        JButton bl=new JButton("弹出对话框");
        bl.setBounds(10, 10, 100, 21);
        bl.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                new MyJDialog(MyFrame.this).setVisible(true);
            }
        });
        container.add(bl);
this.setBounds(100, 100, 300, 500); //设置窗体大小
this.setVisible(true); //设置窗体可见
    }
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式