ImageVerifierCode 换一换
格式:DOC , 页数:25 ,大小:75.50KB ,
资源ID:503594      下载积分:2000 积分
快捷下载
登录下载
邮箱/手机:
温馨提示:
如需开发票,请勿充值!快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝扫码支付 微信扫码支付   
注意:如需开发票,请勿充值!
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【http://www.mydoc123.com/d-503594.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文([计算机类试卷]国家二级(JAVA)机试模拟试卷5及答案与解析.doc)为本站会员(sumcourage256)主动上传,麦多课文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知麦多课文库(发送邮件至master@mydoc123.com或直接QQ联系客服),我们立即给予删除!

[计算机类试卷]国家二级(JAVA)机试模拟试卷5及答案与解析.doc

1、国家二级( JAVA)机试模拟试卷 5及答案与解析 一、选择题 1 Java中的抽象类 Reader和 Writer所处理的流是 ( )。 ( A)图像流 ( B)对象流 ( C)字节流 ( D)字符流 2 下列选项中,与成员变量共同构成一个类的是 ( )。 ( A)关键字 ( B)方法 ( C)运算符 ( D)表达式 3 下列不属于逻辑运算符的是 ( )。 ( A) ! ( B) | ( C) int arr=30,1,-9,70; int n=_; for(i=0;iarrj) int temp=arri; _; _; for(i=0;in;i+) System.out.print(arr

2、i+“ “); 答案 第 1处: arr.length 第 2处: arri=arrj 第 3处: arrj=temp 三、简单应用题 42 本题用复选框来控制 字体的显示,窗口中有一个标签和两个复选按钮,这两个复选按钮分别对应的字体的两个特点:加粗和倾斜,任意选中一个按钮或两个都选中,标签上的字符串就显示对应的字体。 import java.awt.*; import java.awt.event.*; import javax.swing.*; class CheckBoxFrame extends JFrame implements ActionListener public Check

3、BoxFrame() setTitle(“CheckBoxTest“); setSize(300, 200); addWindowListener(new WindowAdapter() public void windowClosing(WindowEvent e) System.exit(0); ); JPanel p = new JPanel(); bold = addCheckBox(p, “Bold“); italic = addCheckBox(p, “Italic“); getContentPane().add(p, “South“); panel = new CheckBoxT

4、estPanel(); getContentPane().add(panel, “Center“); public JCheckBox addCheckBox(JPanel p, String name) JCheckBox c = new JCheckBox(name); c.addActionListener(_); p.add(c); return c; public void _ int m = (bold.isSelected() ? Font.BOLD : 0) + (italic.isSelected() ? Font.ITALIC : 0); panel.setFont(m);

5、 private CheckBoxTestPanel panel; private JCheckBox bold; private JCheckBox italic; class CheckBoxTestPanel extends JPanel public CheckBoxTestPanel() setFont(Font.PLAIN); public void setFont(int m) setFont(new Font(“SansSerif“, m, 12); repaint(); public void paintComponent(Graphics g) super.paintCom

6、ponent(g); g.drawString(“The quick brown fox jumps over the lazy dog.“, 0, 50); public class java2 public static void main(String args) JFrame frame = new CheckBoxFrame(); frame.show(); 四、综合应用题 43 本题的功能是对图形进行操作,包括旋转、移位、放大和剪切。窗口中有四个单选按钮和一个图形面板,图形面板中有一个矩形和该矩形移位操作后的图形,任选其中一个单选按钮,则图形面板中将显示该操作后的图形。 impor

7、t java.awt.*; import java.awt.event.*; import java.awt.geom.*; import java.util.*; import javax.swing.*; public class java3 public static void main(String args) JFrame frame = new TransformTestFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.show(); class TransformTest extends JF

8、rame public TransformTestFrame() setTitle(“java3“); setSize(WIDTH, HEIGHT); Container contentPane = getContentPane(); canvas = new TransformPanel(); contentPane.add(canvas, BorderLayout.CENTER); JPanel buttonPanel = new JPanel(); ButtonGroup group = new ButtonGroup(); JRadioButton rotateButton = new

9、 JRadioButton(“旋转 “, true); buttonPanel.add(rotateButton); group.add(rotateButton); rotateButton.addActionListener(new ActionListener() public void actionPerformed(ActionEvent event) canvas.setRotate(); ); JRadioButton translateButton = new JRadioButton(“移位 “, false); buttonPanel.add(translateButton

10、); group.add(translateButton); translateButton.addActionListener(new ActionListener() public void actionPerformed(ActionEvent event) canvas.setTranslate(); ); JRadioButton scaleButton = new JRadioButton(“放大 “, false); buttonPanel.add(scaleButton); group.add(scaleButton); scaleButton.addActionListene

11、r(new ActionListener() public void actionPerformed(ActionEvent event) canvas.setScale(); ); JRadioButton shearButton = new JRadioButton(“剪切 “, false); buttonPanel.add(shearButton); group.add(shearButton); shearButton.addActionListener(new ActionListener() public void actionPerformed(ActionEvent even

12、t) canvas.setShear(); ); contentPane.add(buttonPanel, BorderLayout.NORTH); private TransformPanel canvas; private static final int WIDTH = 300; private static final int HEIGHT = 300; class TransformPanel extend JPanel public TransformPanel() square = new Rectangle2DDouble(-50, -50, 100, 100); t = ne

13、w AffineTransform(); setRotate(); public void paintComponent() super.paintComponent(g); Graphics2D g2 = (Graphics2D)g; g2.translate(getWidth() / 2, getHeight() / 2); g2.setPaint(Color.gray); g2.draw(square); g2.transform(t); g2.setPaint(Color.black); g2.draw(square); public void setRotate() t.setToR

14、otation(Math.toRadians(30); repaint(); public void setTranslate() t.setToTranslation(20, 15); repaint(); public void setScale() t.setToScale(2.0, 1.5); repaint(); public void setShear() t.setToShear(-0.2, 0); repaint(); private Rectangle2D square; private AffineTransform t; 国家二级( JAVA)机试模拟试卷 5答案与解析

15、一、选择题 1 【正确答案】 D 【试题解析】 Reader/Writer所处理的流是字符流, InputStream/OutputStream的处理对象 是字节流。 2 【正确答案】 B 【试题解析】 类体中定义的两种成员是数据成员和成员函数。 3 【正确答案】 D 【试题解析】 !是逻辑非, |是逻辑或, 第 2处和第 3处是借助临时变量把小的元素交换到前面。 三、简单应用题 42 【正确答案】 第 1处: this第 2处: actionPerformed(ActionEvent evt) 【试题解析】 第 1处注册监听器进行授权,该方法的参数是事件处理者对象 ;第 2处是 actionPerformed方法通过读取 ActionEvent对象的相关信息来得到事件发生时的情况。 四、综合应用题 43 【正确答案】 第 1处: class TransformTestFrame extends JFrame第 2处: class TransformPanel extends Jframe第 3处: public void paintComponent(Graphics g) 【试题解析】 第 1处类中公有对象名称应与类名一致 ;第 2处为继承的父类不正确;第 3处从下面的 super.paintComponent(g);可判断出是应有参数 Graphics g。

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