java操作题24套 短命女 2022-12-08 05:17 168阅读 0赞 ### 文章目录 ### * * 基本操作 * 简单应用 * 综合应用 ## 基本操作 ## > 在考生文件夹中存有文件名为Java\_1.java的文件,该程序是不完整的,请在注释行"//**Found**"下一行语句的下划线地方填入正确内容,然后删除下划线,请勿删除注释行或改动其他已有语句内容。存盘时文件必须存放在考生文件夹下,不得改变原有文件的文件名。 > 程序的功能是在给定球的半径时计算出球的体积。当程序运行时,在命令屏幕上给出程序功能提示,并显示输入半径的窗口:  ![在这里插入图片描述][watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzQzNjc0MzYw_size_16_color_FFFFFF_t_70_pic_center] > 根据考生输入球半径的值计算体积,并在命令屏幕上显示结果。 //***Found***\* import \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_.swing.\*; public class Java\_1 \{ //***Found***\* public \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_ void main(String\[\] args) \{ System.out.println(); System.out.println(“这是一个指定球半径,求球体积的程序。”); String input=JOptionPane.showInputDialog(“请输入球半径。”); //***Found***\* double r=Double.parseDouble(\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_); System.out.println(“当球的半径是” + r + "时,该球的体积是 " + (Math.PI*r*r*r*4/3)); System.exit(0); \} \} > 本题考查的是JavaSwing。 > Swing包位于Javax包下,所以第一空填写"javax"。 > 主函数必须用static修饰,所以第二空填写"static"。 > Input接收的是文本框中输入的值,所以半径r接收的应为input,所以第三空填写"input"。 > 具体程序如下: //*********Found********** import javax.swing.*; public class Java_1 { //*********Found********** public static void main(String[] args) { System.out.println(); System.out.println("这是一个指定球半径,求球体积的程序。"); String input=JOptionPane.showInputDialog("请输入球半径。"); //*********Found********** double r=Double.parseDouble(input); System.out.println("当球的半径是" + r + "时,该球的体积是 " + (Math.PI*r*r*r*4/3)); System.exit(0); } } ## 简单应用 ## > 在考生文件夹中存有文件名为Java\_2.java的文件,该程序是不完整的,请在注释行"//**Found**"下一行语句的下划线地方填入正确内容,然后删除下划线,请勿删除注释行或改动其他已有语句内容。存盘时文件必须存放在考生文件夹下,不得改变原有文件的文件名。 > 程序的功能是:定义了一个简单的线程,可以对其名称进行设置。该程序运行时的输出结果如下: > Running the Testing\_Thread: > \_\_\_0\_\_\_Testing\_Thread > \_\_\_1\_\_\_Testing\_Thread > \_\_\_2\_\_\_Testing\_Thread > \_\_\_3\_\_\_Testing\_Thread > \_\_\_4\_\_\_Testing\_Thread public class Java\_2 \{ public static void main(String\[\] args) \{ Thread t = new SimpleThread(“Testing\_Thread”); //***Found***\* \_\_\_\_\_\_\_\_\_\_\_\_\_\_ ; \} \} //***Found***\* class SimpleThread extends \_\_\_\_\_\_\_\_\_ \{ public SimpleThread(String str) \{ //***Found***\* \_\_\_\_\_\_\_\_\_\_\_\_\_ ; \} //***Found***\* public void \_\_\_\_\_\_\_\_\_() \{ System.out.println(“Running the " + getName() + “:”); for (int i = 0; i < 5; i++) \{ System.out.println(”—" + i + “—” + getName()); try \{ sleep((int)(2 \* 100)); \} //***Found***\* \_\_\_\_\_\_\_\_\_(InterruptedException e) \{ \} \} \} \} > 本题考查的是线程。 > 线程的启动方法是start,所以第一空填写"t.start()"。 > 创建线程时,应该继承Thread类或者实现Runnable接口,本题中,该类已知的关键字为extends,所以第二空填写"Thread"。 > 当需要给线程命名时,只需要在本类中实现父类String参数的构造器,所以第三空填写"super(str)"。 > 用start方法来启动线程,真正实现了多线程运行,这时无需等待run方法体代码执行完毕而直接继续执行下面的代码。而直接执行run方法却会出现等待。 > 本类中,主函数调用start方法,具体实现则在run中,所以第四空填写"run"。 > 异常的捕捉有很多种,这里给出了已知的try,所以第五空填写"catch"。 > 具体程序如下: public class Java_2 { public static void main(String[] args) { Thread t = new SimpleThread("Testing_Thread"); //*********Found********** t.start() ; } } //*********Found********** class SimpleThread extends Thread { public SimpleThread(String str) { //*********Found********** super(str); } //*********Found********** public void run() { System.out.println("Running the " + getName() + ":"); for (int i = 0; i < 5; i++) { System.out.println("---" + i + "---" + getName()); try { sleep((int)(2 * 100)); } //*********Found********** catch(InterruptedException e) { } } } } ## 综合应用 ## > 在考生文件夹中存有文件名为Java\_3.java的文件,该程序是不完整的,请在注释行"//**Found**"下一行语句的下划线地方填入正确内容,然后删除下划线,请勿删除注释行或改动其他已有语句内容。存盘时文件必须存放在考生文件夹下,不得改变原有文件的文件名。 > 本题的要求是: > 在JFrame窗口中,显示出红色的2008北京奥运主题口号“同一个世界,同一个梦想”,同时在窗口的上方,有三个按钮可以改变窗口的背景色。 > 该程序的运行结果如下:  ![在这里插入图片描述][watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzQzNjc0MzYw_size_16_color_FFFFFF_t_70_pic_center 1] import java.awt.event.*; import java.awt.*; import java.awt.font.*; import java.awt.geom.*; import javax.swing.\*; public class Java\_3 \{ public static void main(String\[\] args) \{ FontFrame frame = new FontFrame(); frame.setDefaultCloseOperation(JFrame.EXIT\_ON\_CLOSE); frame.setVisible(true); \} \} //***Found***\* class FontFrame extends \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_ \{ public FontFrame() \{ setTitle(“北京 2008”); setSize(DEFAULT\_WIDTH, DEFAULT\_HEIGHT); FontPanel panel = new FontPanel(); Container contentPane = getContentPane(); //***Found***\* contentPane.add(\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_); \} public static final int DEFAULT\_WIDTH = 400; public static final int DEFAULT\_HEIGHT = 250; \} class FontPanel extends JPanel \{ public FontPanel() \{ JButton yellowButton = new JButton(“Yellow”); JButton blueButton = new JButton(“Blue”); JButton redButton = new JButton(“Green”); add(yellowButton); add(blueButton); add(redButton); ColorAction yellowAction = new ColorAction(Color.YELLOW); ColorAction blueAction = new ColorAction(Color.BLUE); ColorAction greenAction = new ColorAction(Color.GREEN); yellowButton.addActionListener(yellowAction); blueButton.addActionListener(blueAction); redButton.addActionListener(greenAction); \} public void paintComponent(Graphics g) \{ super.paintComponent(g); Graphics2D g2 = (Graphics2D)g; String message = “同一个世界,同一个梦想!”; Font f = new Font(“隶书”, Font.BOLD, 27); g2.setFont(f); FontRenderContext context = g2.getFontRenderContext(); Rectangle2D bounds = f.getStringBounds(message, context); double x = (getWidth() - bounds.getWidth()) / 2; double y = (getHeight() - bounds.getHeight()) / 2; double ascent = -bounds.getY(); double baseY = y + ascent; g2.setPaint(Color.RED); g2.drawString (message, (int)x, (int)(baseY)); \} //***Found***\* private class ColorAction \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_ ActionListener \{ public ColorAction(Color c) \{ BackgroundColor = c; \} //***Found***\* public void \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_ (ActionEvent event) \{ setBackground(BackgroundColor); \} private Color BackgroundColor; \} \} > 本题考查的是JavaSwing。 > 一个窗口的最基本的框架为JFrame,JFrame中可以嵌套很多其他的诸如Panel的对象,所以,FontFrame类应继承JFrame类,第一空填写"JFrame"。 > JFrame有一个ContentPane,窗口能显示的所有组件都是添加在这个ContentPane中,所以第二空填写"panel"。 > ActionListener是事件监听接口,所以第三空填写"implements"。 > actionPerformed是接口ActionListener里面定义的一个抽象方法,所有实现这个接口的类都要重写这个方法。所以第四空填写"actionPerformed"。 > 具体程序如下: import java.awt.event.*; import java.awt.*; import java.awt.font.*; import java.awt.geom.*; import javax.swing.*; public class Java_3 { public static void main(String[] args) { FontFrame frame = new FontFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } } //*********Found********** class FontFrame extends JFrame { public FontFrame() { setTitle("北京 2008"); setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT); FontPanel panel = new FontPanel(); Container contentPane = getContentPane(); //*********Found********** contentPane.add(panel); } public static final int DEFAULT_WIDTH = 400; public static final int DEFAULT_HEIGHT = 250; } class FontPanel extends JPanel { public FontPanel() { JButton yellowButton = new JButton("Yellow"); JButton blueButton = new JButton("Blue"); JButton redButton = new JButton("Green"); add(yellowButton); add(blueButton); add(redButton); ColorAction yellowAction = new ColorAction(Color.YELLOW); ColorAction blueAction = new ColorAction(Color.BLUE); ColorAction greenAction = new ColorAction(Color.GREEN); yellowButton.addActionListener(yellowAction); blueButton.addActionListener(blueAction); redButton.addActionListener(greenAction); } public void paintComponent(Graphics g) { super.paintComponent(g); Graphics2D g2 = (Graphics2D)g; String message = "同一个世界,同一个梦想! 11:16:59 Font f = new Font("隶书", Font.BOLD, 27); g2.setFont(f); FontRenderContext context = g2.getFontRenderContext(); Rectangle2D bounds = f.getStringBounds(message, context); double x = (getWidth() - bounds.getWidth()) / 2; double y = (getHeight() - bounds.getHeight()) / 2; double ascent = -bounds.getY(); double baseY = y + ascent; g2.setPaint(Color.RED); g2.drawString (message, (int)x, (int)(baseY)); } //*********Found********** private class ColorAction implements ActionListener { public ColorAction(Color c) { BackgroundColor = c; } //*********Found********** public void actionPerformed (ActionEvent event) { setBackground(BackgroundColor); } private Color BackgroundColor; } } [watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzQzNjc0MzYw_size_16_color_FFFFFF_t_70_pic_center]: /images/20221123/dd29d191fa2748fdb5c9a1645051090f.png [watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzQzNjc0MzYw_size_16_color_FFFFFF_t_70_pic_center 1]: /images/20221123/58d7267e0a5f4b30a46cddbaf66c6f2b.png
相关 java操作题45套 文章目录 基本操作 简单应用 综合应用 基本操作 > 在考生文件夹中存有文件名为Java\_1.java的文件,该程序是不 旧城等待,/ 2022年12月09日 15:52/ 0 赞/ 215 阅读
相关 java操作题40套 文章目录 基本操作 简单应用 综合应用 基本操作 > 在考生文件夹中存有文件名为Java_1.java的文件,该程 野性酷女/ 2022年12月09日 15:50/ 0 赞/ 173 阅读
相关 java操作题36套 文章目录 基本操作 简单应用 综合应用 基本操作 > 在考生文件夹中存有文件名为Java\_1.java的文件,该程序是不 今天药忘吃喽~/ 2022年12月09日 13:57/ 0 赞/ 178 阅读
相关 java操作题35套 文章目录 基本操作 简单应用 综合应用 基本操作 > 在考生文件夹中存有文件名为Java\_1.java的文件,该程序是不 古城微笑少年丶/ 2022年12月09日 13:56/ 0 赞/ 159 阅读
相关 java操作题34套 文章目录 基本操作 简单应用 综合应用 基本操作 > 在考生文件夹中存有文件名为Java\_1.java的文件,该程序是不 一时失言乱红尘/ 2022年12月09日 13:56/ 0 赞/ 77 阅读
相关 java操作题31套 文章目录 基本操作 简单应用 综合应用 基本操作 > 在考生文件夹中存有文件名为Java\_1.java的文件,该程序是不 Dear 丶/ 2022年12月08日 05:27/ 0 赞/ 218 阅读
相关 java操作题30套 文章目录 基本操作 简单应用 综合应用 基本操作 > 在考生文件夹中存有文件名为Java\_1.java的文件,该程序是不 ╰+哭是因爲堅強的太久メ/ 2022年12月08日 05:25/ 0 赞/ 120 阅读
相关 java操作题29套 文章目录 基本操作 简单应用 综合应用 基本操作 > 在考生文件夹中存有文件名为Java\_1.java的文件。 > 今天药忘吃喽~/ 2022年12月08日 05:24/ 0 赞/ 167 阅读
相关 java操作题28套 文章目录 基本操作 简单应用 综合应用 基本操作 > 在考生文件夹中存有文件名为Java\_1.java的文件,该程序是不 旧城等待,/ 2022年12月08日 05:24/ 0 赞/ 158 阅读
相关 java操作题24套 文章目录 基本操作 简单应用 综合应用 基本操作 > 在考生文件夹中存有文件名为Java\_1.java的文件,该程序是不 短命女/ 2022年12月08日 05:17/ 0 赞/ 169 阅读
还没有评论,来说两句吧...