当前位置: 代码迷 >> Java相关 >> 关于frame 小窗口器
  详细解决方案

关于frame 小窗口器

热度:315   发布时间:2009-09-26 16:18:38.0
关于frame 小窗口器
运行是button="退出",怎么是两上正方形呢,这是不是所谓的乱码呢



import java.awt.*;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class smp extends Frame implements ActionListener
{
    Button btn=new Button("退出");
    smp()
    {
      
        
        add(btn);
        setVisible(true);
        pack();
        btn.addActionListener(this);

    }
    public void actionPerformed(ActionEvent e)
    {
        if(e.getSource()==btn)
        {
            System.exit(0);
        }
    }
    public static void main(String args[])
    {
        smp sf=new smp();
    }
}
搜索更多相关的解决方案: 窗口  frame  

----------------解决方案--------------------------------------------------------
就代码本身来说是没有什么问题的,不知道你用的是什么环境
----------------解决方案--------------------------------------------------------
没问题啊,这是教材里的一个例子
----------------解决方案--------------------------------------------------------
我用的是netbeans ide
----------------解决方案--------------------------------------------------------
  相关解决方案