[問答題] 下面是一個Applet程序,其功能是接收用戶輸入的兩個整數(shù),比較它們的大小,并在用戶按下“比較大小”按鈕后,將Applet中顯示的“請先輸入兩個待比
[問答題] 下面是一個Applet程序,其功能是接收用戶輸入的兩個整數(shù),比較它們的大小,并在用戶按下“比較大小”按鈕后,將Applet中顯示的“請先輸入兩個待比較的整數(shù)”,改為“兩個整數(shù)中最大值是:x”,x是兩個數(shù)中的最大值。請改正程序中的錯誤(有下劃線的語句),使程序能輸出正確的結果。
注意:不改動程序的結構,不得增行或刪行。
import java. applet. *;
import java. awt. *
import java. awt. event. *;
/*
<applet code= LookForMax width= 800 height= 400>
</applet>
*/
public class LookForMax extends Applet implements ActionListener
Label result;
TextField in1,in2
Button btn;
int a=0,b=0,max=0;
public void init()
result=new Label( "請先輸入兩個待比較的整數(shù)");
in1 = new TextField(5);
in2 = new TextField (5)
btn = new Button("比較大小");
add(in1);
add(in2)
add(btn)
add(result)
btn. addActionListener(super)
public void actionPerformed(ActionEvent e)a=Integer.
正確答案:thisin1.getText()in2.getText()
參考解析:本題主要考查Java Applet程序的編寫、java.a(chǎn)wt包的基本組件的使用及super和this關鍵字的使用。Applet(小程序)是一種很重要的 Java程序,是工作在Internet的瀏覽器上或借助 JDK中的appletviewer來工作的Java程序。編寫Applet小程序必須要用到java.a(chǎn)pplet包中的 Applet類。java.a(chǎn)pplet.Applet是java.a(chǎn)wt.Panel的子類。在本題中,public class LookForMax extends Applet implements ActionListener語句的功能是聲明一個繼承Applet類且實現(xiàn)ActionListener接口的類LookForMax來實現(xiàn)程序功能,btn.a(chǎn)ddActionListener(this);語句的功能是為按鈕btn對象注冊一個事件監(jiān)聽器this(this是指當前LookForMax的對象),a=Integer.parseInt (in 1.getText());和b=Integer.parseInt(in 2.getText());語句的功能是把從文本框in1和 in2獲得的字符型數(shù)據(jù)轉(zhuǎn)換成基本整型數(shù)據(jù),并把這兩個值分別賦給變量a和b。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學等領域),建議您咨詢相關領域?qū)I(yè)人士。