JAVA小程序簡單制作
創(chuàng)建一個200*200的名為"java"的窗口,在窗口上做一個名為“exit”的按扭(可以覆蓋整個窗口)點(diǎn)擊該按扭退出窗口
import javax.swing.*;
import java.awt.event.*;
public class TestFrame extends JFrame,implements ActionListner
{
public TestFrame()
{
JButton b = new JButton("exit");
b.addActionListener(this);
Container cp = this.getContentPane();
cp.add(b);
this.setSize(200,200);
this.setVisible(true);
}
public void actionPerformed(ActionEvent evt)
{
System.exit(0);
}
public static void main(String[] args)
{
new TestFrame();
}
}·
附:java小程序代碼有哪些?怎么實(shí)現(xiàn)?
第二部分:如何開通一個小商店