欢迎来到麦多课文档分享! | 帮助中心 海量文档,免费浏览,给你所需,享你所想!
麦多课文档分享
全部分类
  • 标准规范>
  • 教学课件>
  • 考试资料>
  • 办公文档>
  • 学术论文>
  • 行业资料>
  • 易语言源码>
  • ImageVerifierCode 换一换
    首页 麦多课文档分享 > 资源分类 > DOC文档下载
    分享到微信 分享到微博 分享到QQ空间

    【计算机类职业资格】计算机二级JAVA-139及答案解析.doc

    • 资源ID:1338225       资源大小:43KB        全文页数:8页
    • 资源格式: DOC        下载积分:5000积分
    快捷下载 游客一键下载
    账号登录下载
    微信登录下载
    二维码
    微信扫一扫登录
    下载资源需要5000积分(如需开发票,请勿充值!)
    邮箱/手机:
    温馨提示:
    如需开发票,请勿充值!快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如需开发票,请勿充值!如填写123,账号就是123,密码也是123。
    支付方式: 支付宝扫码支付    微信扫码支付   
    验证码:   换一换

    加入VIP,交流精品资源
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    【计算机类职业资格】计算机二级JAVA-139及答案解析.doc

    1、计算机二级 JAVA-139 及答案解析(总分:100.00,做题时间:90 分钟)一、1基本操作题(总题数:1,分数:30.00)1.注意:下面出现的“考生文件夹”均为%USER%。 在考生文件夹下存有文件名为 Java_1.java 的文件,请完善该程序并进行调试,使程序输出结果如下: (分数:30.00)_二、2简单应用题(总题数:1,分数:40.00)2.本题程序的功能是主窗口有一个按钮、一个文本域和一个复选框,初始时窗口的大小是不能调整的,勾选复选框后,窗口大小就可以进行调整,如果取消勾选复选框,则窗口的大小又不能调整,单击按钮可以关闭程序。请将下述程序补充完整(注意:不得改动程序的

    2、结构,不得增行或删行)。 import java.awt.*; import java.awt.event.*; class MyFrame extends Frame_ Checkbox box; TextArea text; Button button; MyFrame(String s) super (s); box = new Checkbox(“设置窗口是否可调整大小“); text = new TextArea(12,12); button = new Button(“关闭窗口“); button.addActionListener(this); box.addItemListen

    3、er(this); setBounds(100,100,200,300); setVisible(true); add(text,BorderLayout.CENTER); add(box,BorderLayout.SOUTH); add(button,BorderLayout.NORTH); _; validate (); public void itemStateChanged(ItemEvent e) if (box.getState() = true) setResizable(true); else setResizable(false); public void actionPer

    4、formed(ActionEvent e) dispose(); class simple public static void main(String args) new MyFrame(“simple“); (分数:40.00)_三、3综合应用题(总题数:1,分数:30.00)3.本题程序的功能是求两个交叉图形的并、减、交及异或。窗口中有 4 个单选按钮和一个图形面板,面板中有两个交叉的图形,选中其中一个单选按钮,图形面板中会以黑色填充的方式显示运算的结果。请将下述程序补充完整(注意:不得改动程序的结构,不得增行或删行)。 import java.awt.*; import java.aw

    5、t.event.*; import java.awt.geom.*; import java.util.*; import javax.swing.*; public class advance public static void main(String args) JFrame frame = new AreaTestFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.show(); class AreaTestFrame extends JFrame public AreaTestFrame() set

    6、Title(“advance“); setSize(WIDTH,HEIGHT); area1 = new Area(new Ellipse2D.Double(100,100,150,100); area2 = new Area(new Rectangle2D.Double(150,150,150,100); _; panel = new JPanel() public void paintComponent(Graphics g) super.paintComponent(g); Graphics2D g2 = (Graphics2D)g; g2.draw(area1); g2.draw(ar

    7、ea2); if (area ! = null) g2.fill(area); contentPane.add(panel,BorderLayout.CENTER); JPanel buttonPanel = new JPanel(); ButtonGroup group = new ButtonGroup(); JRadioButton addButtoh = new JRadioButton(“并“,false); buttonPanel.add(addButton); group.add(addButton); addButton.addActionListener(new Action

    8、Listener() public void actionPerformed(ActionEvent event) area = new Area(); area.add(area1); area.add(area2); panel.repaint(); ); JRadioButton subtractButton = new JRadioButton(“减“,false); buttonPanel.add(subtractButton); group.add(subtractButton); subtractButton.addActionListener(new ActienListene

    9、r() public void actionPerformed(ActionEvent event) area = new Area(); area.add(areal); _; panel.repaint(); ); JRadioButton intersectButton = new JRadioButton(“交“,false); buttonPanel.add(intersectButton); group.add(intersectButton); intersectButton.addActionListener(new ActionListener() public void a

    10、ctionPerformed(ActionEvent event) area = new Area(); area.add(area1); area.intersect(area2); panel.repaint(); ); JRadioButten exclusiveOrButton = new JRadioButton(“异或“,false); buttonPanel.add(exclusiveOrButton); group.add(exclusiveOrButton); exclusiveOrButton.addActionListener(new ActionListener() p

    11、ublic void actionPerformed(ActionEvent event) area = new Area(); area.add(area1); _; panel,repaint (); ); contentPane.add(buttonPanel,BorderLayout.NORTH); private JPanel pane1; private Area area; private Area area1; private Area area2; private static final int WIDTH = 400; private static final int H

    12、EIGHT = 400; (分数:30.00)_计算机二级 JAVA-139 答案解析(总分:100.00,做题时间:90 分钟)一、1基本操作题(总题数:1,分数:30.00)1.注意:下面出现的“考生文件夹”均为%USER%。 在考生文件夹下存有文件名为 Java_1.java 的文件,请完善该程序并进行调试,使程序输出结果如下: (分数:30.00)_正确答案:()解析:new new showMessageDialog解析 第 1 处:分配数组,需填入 new;第 2 处:创建一个文本输出区域,需填入 new;第 3 处:显示信息对话框函数,需填入 showMessageDialog。

    13、二、2简单应用题(总题数:1,分数:40.00)2.本题程序的功能是主窗口有一个按钮、一个文本域和一个复选框,初始时窗口的大小是不能调整的,勾选复选框后,窗口大小就可以进行调整,如果取消勾选复选框,则窗口的大小又不能调整,单击按钮可以关闭程序。请将下述程序补充完整(注意:不得改动程序的结构,不得增行或删行)。 import java.awt.*; import java.awt.event.*; class MyFrame extends Frame_ Checkbox box; TextArea text; Button button; MyFrame(String s) super (s)

    14、; box = new Checkbox(“设置窗口是否可调整大小“); text = new TextArea(12,12); button = new Button(“关闭窗口“); button.addActionListener(this); box.addItemListener(this); setBounds(100,100,200,300); setVisible(true); add(text,BorderLayout.CENTER); add(box,BorderLayout.SOUTH); add(button,BorderLayout.NORTH); _; valida

    15、te (); public void itemStateChanged(ItemEvent e) if (box.getState() = true) setResizable(true); else setResizable(false); public void actionPerformed(ActionEvent e) dispose(); class simple public static void main(String args) new MyFrame(“simple“); (分数:40.00)_正确答案:()解析:implements ItemListener,Action

    16、Listener。 setResizable(false)。三、3综合应用题(总题数:1,分数:30.00)3.本题程序的功能是求两个交叉图形的并、减、交及异或。窗口中有 4 个单选按钮和一个图形面板,面板中有两个交叉的图形,选中其中一个单选按钮,图形面板中会以黑色填充的方式显示运算的结果。请将下述程序补充完整(注意:不得改动程序的结构,不得增行或删行)。 import java.awt.*; import java.awt.event.*; import java.awt.geom.*; import java.util.*; import javax.swing.*; public cla

    17、ss advance public static void main(String args) JFrame frame = new AreaTestFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.show(); class AreaTestFrame extends JFrame public AreaTestFrame() setTitle(“advance“); setSize(WIDTH,HEIGHT); area1 = new Area(new Ellipse2D.Double(100,100,

    18、150,100); area2 = new Area(new Rectangle2D.Double(150,150,150,100); _; panel = new JPanel() public void paintComponent(Graphics g) super.paintComponent(g); Graphics2D g2 = (Graphics2D)g; g2.draw(area1); g2.draw(area2); if (area ! = null) g2.fill(area); contentPane.add(panel,BorderLayout.CENTER); JPa

    19、nel buttonPanel = new JPanel(); ButtonGroup group = new ButtonGroup(); JRadioButton addButtoh = new JRadioButton(“并“,false); buttonPanel.add(addButton); group.add(addButton); addButton.addActionListener(new ActionListener() public void actionPerformed(ActionEvent event) area = new Area(); area.add(a

    20、rea1); area.add(area2); panel.repaint(); ); JRadioButton subtractButton = new JRadioButton(“减“,false); buttonPanel.add(subtractButton); group.add(subtractButton); subtractButton.addActionListener(new ActienListener() public void actionPerformed(ActionEvent event) area = new Area(); area.add(areal);

    21、_; panel.repaint(); ); JRadioButton intersectButton = new JRadioButton(“交“,false); buttonPanel.add(intersectButton); group.add(intersectButton); intersectButton.addActionListener(new ActionListener() public void actionPerformed(ActionEvent event) area = new Area(); area.add(area1); area.intersect(ar

    22、ea2); panel.repaint(); ); JRadioButten exclusiveOrButton = new JRadioButton(“异或“,false); buttonPanel.add(exclusiveOrButton); group.add(exclusiveOrButton); exclusiveOrButton.addActionListener(new ActionListener() public void actionPerformed(ActionEvent event) area = new Area(); area.add(area1); _; pa

    23、nel,repaint (); ); contentPane.add(buttonPanel,BorderLayout.NORTH); private JPanel pane1; private Area area; private Area area1; private Area area2; private static final int WIDTH = 400; private static final int HEIGHT = 400; (分数:30.00)_正确答案:()解析:Container contentPane = getContentPane()。 area.subtract(area2)。 area.exclusiveOr(a rea2)。


    注意事项

    本文(【计算机类职业资格】计算机二级JAVA-139及答案解析.doc)为本站会员(feelhesitate105)主动上传,麦多课文档分享仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知麦多课文档分享(点击联系客服),我们立即给予删除!




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

    copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
    备案/许可证编号:苏ICP备17064731号-1 

    收起
    展开