皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【简答题】
请使用NetBeans打开考生文件夹下的项目Java_2,该项目中的源程序文件Java_2.java是不完整的,请在注释行"//******Found******"下一行语句的下划线地方填入正确内容,然后删除下划线,请勿删除注释行或改动其他已有语句内容。存盘时不得改变原有文件的文件名及存放目录。 本题的要求是:完成运行后显示一个窗口。该窗口包含一个按和一个文本域,当点击按时将在文本域中显示当前日期,如图所示。 import java.awt.*; import java.awt.event.*; import java.util.Date; public class Java_2 implements ActionListener{ Frame f; Button b; TextField tf; public Java_2(){ f = new Frame("Show Date"); //*********Found******** ______(new FlowLayout()); f.setSize(300,100); //注册关闭窗口的监听器 f.addWindowListener(new WindowAdapter(){ public void windowClosing(WindowEvent e){ System.exit(0); } }); b = new Button("显示当前日期"); //*********Found******** ______(this); tf = new TextField(30); f.add(b); f.add(tf); f.setVisible(true); } public static void main(String[] args) { Java_2 t = new Java_2(); } public void actionPerformed(ActionEvent e){ Date d = new Date(); //获取当前日期。 tf.setText(d.toString()); } }
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【简答题】19世纪前后到第二次结束,是教育研究方法发展的()时期。
【简答题】The t( ) w( ) are the ten pieces of articles, in Chinese Shiyi, that explain the meanings of the Book of Changes throughout history.
【简答题】Explain the meanings of the following words in English. sphere
【单选题】假设检验的方法步骤顺序是 ( 1)确定(构造)检验统计量 ; ( 2)提出原假设H 0 和备择假设 H 1 ; ( 3)代入数据下结论; ( 4)对显著性水平α确定拒绝域.
A.
( 1)(2)(3)(4)
B.
( 2)(1)(4)(3)
C.
( 2)(3)(4)(1)
D.
( 4)(3)(2)(1)
【简答题】第二次爆发,前后卷入战争的由多少个国家?
【单选题】第二次世界大战全面爆发,前后卷入战争的共计()国家。
A.
59个
B.
61个
C.
63个
【简答题】在色彩的前后感中,高明度有向 的感觉,低明度有向 的感觉。(注:只填一个字)
【单选题】According to the author______.
A.
context can often be used to explain the meanings of unfamiliar words
B.
it is not practical to check unfamiliar words with a dictionary
C.
it is not necessary to consult a dictionary when reading in your native language
D.
you usually enjoy guessing the meanings unfamiliar words
【简答题】explain the meanings of your name
【单选题】第二次世界大战前后都是人口迁入地的是            (  )
A.
欧洲
B.
拉丁美洲
C.
北美
D.
非洲
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题