问答题
[说明]
面是一个Applet程序,其功能是有2个按钮,分别为First和Second,以及一个Label控件。要求点击First时则能在Label中显示出Command:First,而点击Second时则能显示出 Command: Second,要求只能使用重载一次actionPerfonned()方法。
程序运行结果如图6所示。
import java. awt.*;
import java. awt. event. *;
import java. applet. *;
/*
< applet cede = exl_7, class width = 800 height = 400 >
</applet >
*/
public class ex]_ extends Applet implements ActionListener {
private String str = "ok";
private Label |;
private Button btn;
public void init( ) {
(1)
I = new Label(str);
I. reshape(10, 10, 150, 30);
add(I);
(2)
btn. reshape(10, 50, 60, 20);
(3)
add(btn);
btn = new Button(" Second" );
btn. reshape(10, 100, 60, 20);
(4)
btn, addActionListener(this);
add(btn);
}
public void actionPerformed(ActionEvent ae) {
str = " Command:" +ae. getActionCommand( )
(5)
ex1_7, html
< HTML >
< HEAD >
< TITLE > ext _7 </TITLE >
</HEAD >
< BODY >
< appletcode =" ext. class" width =800 height =400 >
</applet >
</BODY >
</HTML >
【参考答案】
(1)setLayout(null); (2)btn=new Button("First"); (3)btn.addAc......
(↓↓↓ 点击下方‘点击查看答案’看完整答案 ↓↓↓)