1、(A)二级 JAVA 笔试-9 及答案解析(总分:100.00,做题时间:90 分钟)一、基本操作题(总题数:1,分数:30.00)1.本题将数组 arrA 中的元素按逆序存储在另外一个相同长度的数组 arrB 中。public class java1public static void main(Stringargs)intarrA=1,3,8,4,2,6,9,0,7);intarrB=_;int i=0;int j=_;for(i=0; iarrA. length; i+)arrBj=arrAi;_;System. out. println(“arrm:“+“arrB:“);for(i=0
2、; iarrA. length; i+)System. out. println(arrAi+“ “+arrBi);(分数:30.00)填空项 1:_二、简单应用题(总题数:1,分数:30.00)2.本题中,主窗口有一个按钮、一个文本域和一个复选按钮,初始时窗口的大小是不能调整的,选中复选按钮后,窗口大小就可以进行调整,如果撤销复选按钮的选择,则窗口的大小又不能调整,单击按钮可以关闭程序。import java. awt. * ;import java. awt. event. * ;class MyFrame extends Frame_Checkbox box;TextArea text;
3、Button button;MyFrame(String s)super(s);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,
4、 BorderLayout. NORTH);validate();public void itemStateChanged(ItemEvent e)if(box. getState()=true)setResizable(true);elsesetResizable(false);public void actionPerformed(AetionEvent e)dispose();class java2public static void main(String args)new MyFrame(“java2“);(分数:30.00)填空项 1:_三、综合应用题(总题数:1,分数:40.00
5、)3.本题的功能是对列表项的操作,包括删除、添加和反选。窗口中有两个列表框和 5 个按钮,按钮标签代表着移除列表项的方向,“”代表只移除选中的列表项,“”代表移除所有的列表项,“!”代表反向选择列表项。import java. awt. * ;import java. awt. event. * ;class java3 extends Frame implements ActionListenerList ltList=new List(ITEMS, true);List rtList=new List(0,true);java3()super(“java3“);addWindowListe
6、ner(new WindowAdapter()public void windowClosing(WindowEvent e)System. exit(0););GridBagLayout gbl=new GridBagLayout();setLayout (gbl);add(ltList, 0,0,1,5,1.0,1.0);add(rtList, 2,0,1,5,1.0,1.0);ltList, addAetionListener(this);ltList, addItemListener(this);rtList, addAetionListener(this);rtList, addhe
7、mListener(this);Button b;add(b=new Button(“), 1,0,1,1,0,1.0);b. addAetionListener(this);add(b=new Button(“), 1,1,1,1,0,1.0);b. addAetionListener(this);add(b=new Button(“), 1,2,1,1,0,1.0);b. addActionListener(this);add(b=new Button(“), 1,3,1,1,0,1.0);b. addActionListener(this);add(b=new Button(“!“),
8、1,4,1,1,0,1.0);b. addAetionListener(this);for (int i=0; iITEMS; i+)ltList. add(“item“+i);pack();show();void add(Component comp,int x, int y, int w, int h, double weightx, double weighty)GridBagLayout gbl=(GridBagLayout)getLayout();GridBagConstraints c=new GridBagConstraints();c. fill=GridBagConstrai
9、nts. BOTH;c. gridx=x;c. gridy=y;c. gridwidth=w;c. gridheight=h;c. weightx=weightx;c. weighty=weighty;add(comp);gbl. setConstraints(comp, c);void reverseSelections(List 1)for(int i=0; i1. length(); i+)if(1. islndexSelected(i)1. deselect(i);else1. select(i);void deselectAll(List 1)for (int i=0; i1. ge
10、tItemCount(); i+)1. deseleet(i);void replaceItem(List 1, String item)for (int i=0; i1. getItemCount(); i+)if(1. getItem(i), equals(item)1. replaceItem(item+“*“, i);void move(List l1, List l2, boolean all)if (all)for (int i=0; il1. getItemCount(); i+)l2. add(l1. getItem(i);l1. removeAll();elseString
11、items=l1. getSelectedItems();int itemIndexes=l1. getSelectedIndexes();deselectAll(l2);for (int i=0; iitems. length; i+)l2. add(itemsi);l2. select(l2. gethemCount()-1);if(i=0)12. makeVisible(l2, getltemCount()-1);for (int i=itemlndexes. length-1; i=0; i-)l1. remove(itemIndexesi);public void actionPer
12、formed(ActionEvent evt)String arg=evt. getActionCommand();if (“. equals(arg)move(ltList, rtList, false);else if(“. equals(arg)move(ltList, rtList, true);else if(“. equals(arg)move(rtList, ltList, false);else if(“. equals(arg)move(rtList, ltList, true);else if(“!“. equals(arg)if (ltList. getSelectedh
13、ems(), length0)reverseSeleetions(ltList);else if (rtList. getSelectedltems(). length0)reverseSelections(rtList);elseObject target=evt. getSource();if (target=rtList|target=ltList)replaceItem(List) target, arg);public void itemStatedChanged(ItemEvent ent)List target=(List)evt. getSource();if (target=
14、ltList)deselectAll(rtList);else if(target=rtList)deselectAll(ltList)public static void main(String args)new java3()(分数:40.00)填空项 1:_(A)二级 JAVA 笔试-9 答案解析(总分:100.00,做题时间:90 分钟)一、基本操作题(总题数:1,分数:30.00)1.本题将数组 arrA 中的元素按逆序存储在另外一个相同长度的数组 arrB 中。public class java1public static void main(Stringargs)intarrA=
15、1,3,8,4,2,6,9,0,7);intarrB=_;int i=0;int j=_;for(i=0; iarrA. length; i+)arrBj=arrAi;_;System. out. println(“arrm:“+“arrB:“);for(i=0; iarrA. length; i+)System. out. println(arrAi+“ “+arrBi);(分数:30.00)填空项 1:_ (正确答案:第 1 处:new intarrA. length第 2 处:arrA. length-1第 3 处:j-或 j=j-1 或 j-=1)解析:解析 第 1 处将 arrB 的
16、长度设定成与 arrA 相同;第 2 处因为是逆序存储,从后面的 arrBj=arrAi;可以看出,j 的初值应使 arrBj指向数组末尾。第 3 处 for 循环使用。二、简单应用题(总题数:1,分数:30.00)2.本题中,主窗口有一个按钮、一个文本域和一个复选按钮,初始时窗口的大小是不能调整的,选中复选按钮后,窗口大小就可以进行调整,如果撤销复选按钮的选择,则窗口的大小又不能调整,单击按钮可以关闭程序。import java. awt. * ;import java. awt. event. * ;class MyFrame extends Frame_Checkbox box;Text
17、Area text;Button button;MyFrame(String s)super(s);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);a
18、dd(button, BorderLayout. NORTH);validate();public void itemStateChanged(ItemEvent e)if(box. getState()=true)setResizable(true);elsesetResizable(false);public void actionPerformed(AetionEvent e)dispose();class java2public static void main(String args)new MyFrame(“java2“);(分数:30.00)填空项 1:_ (正确答案:第 1 处
19、:implements ItemListener, ActionListener第 2 处:setResizable(false))解析:解析 第 1 处从后面的 button. addActionListener(this); box. addItemListener(this);可以看出 MyFrame 需要 hemListener 和 ActionListener 接口;第 2 处设置初始时窗口的大小是不能调整的。三、综合应用题(总题数:1,分数:40.00)3.本题的功能是对列表项的操作,包括删除、添加和反选。窗口中有两个列表框和 5 个按钮,按钮标签代表着移除列表项的方向,“”代表只
20、移除选中的列表项,“”代表移除所有的列表项,“!”代表反向选择列表项。import java. awt. * ;import java. awt. event. * ;class java3 extends Frame implements ActionListenerList ltList=new List(ITEMS, true);List rtList=new List(0,true);java3()super(“java3“);addWindowListener(new WindowAdapter()public void windowClosing(WindowEvent e)Sys
21、tem. exit(0););GridBagLayout gbl=new GridBagLayout();setLayout (gbl);add(ltList, 0,0,1,5,1.0,1.0);add(rtList, 2,0,1,5,1.0,1.0);ltList, addAetionListener(this);ltList, addItemListener(this);rtList, addAetionListener(this);rtList, addhemListener(this);Button b;add(b=new Button(“), 1,0,1,1,0,1.0);b. ad
22、dAetionListener(this);add(b=new Button(“), 1,1,1,1,0,1.0);b. addAetionListener(this);add(b=new Button(“), 1,2,1,1,0,1.0);b. addActionListener(this);add(b=new Button(“), 1,3,1,1,0,1.0);b. addActionListener(this);add(b=new Button(“!“), 1,4,1,1,0,1.0);b. addAetionListener(this);for (int i=0; iITEMS; i+
23、)ltList. add(“item“+i);pack();show();void add(Component comp,int x, int y, int w, int h, double weightx, double weighty)GridBagLayout gbl=(GridBagLayout)getLayout();GridBagConstraints c=new GridBagConstraints();c. fill=GridBagConstraints. BOTH;c. gridx=x;c. gridy=y;c. gridwidth=w;c. gridheight=h;c.
24、weightx=weightx;c. weighty=weighty;add(comp);gbl. setConstraints(comp, c);void reverseSelections(List 1)for(int i=0; i1. length(); i+)if(1. islndexSelected(i)1. deselect(i);else1. select(i);void deselectAll(List 1)for (int i=0; i1. getItemCount(); i+)1. deseleet(i);void replaceItem(List 1, String it
25、em)for (int i=0; i1. getItemCount(); i+)if(1. getItem(i), equals(item)1. replaceItem(item+“*“, i);void move(List l1, List l2, boolean all)if (all)for (int i=0; il1. getItemCount(); i+)l2. add(l1. getItem(i);l1. removeAll();elseString items=l1. getSelectedItems();int itemIndexes=l1. getSelectedIndexe
26、s();deselectAll(l2);for (int i=0; iitems. length; i+)l2. add(itemsi);l2. select(l2. gethemCount()-1);if(i=0)12. makeVisible(l2, getltemCount()-1);for (int i=itemlndexes. length-1; i=0; i-)l1. remove(itemIndexesi);public void actionPerformed(ActionEvent evt)String arg=evt. getActionCommand();if (“. e
27、quals(arg)move(ltList, rtList, false);else if(“. equals(arg)move(ltList, rtList, true);else if(“. equals(arg)move(rtList, ltList, false);else if(“. equals(arg)move(rtList, ltList, true);else if(“!“. equals(arg)if (ltList. getSelectedhems(), length0)reverseSeleetions(ltList);else if (rtList. getSelec
28、tedltems(). length0)reverseSelections(rtList);elseObject target=evt. getSource();if (target=rtList|target=ltList)replaceItem(List) target, arg);public void itemStatedChanged(ItemEvent ent)List target=(List)evt. getSource();if (target=ltList)deselectAll(rtList);else if(target=rtList)deselectAll(ltLis
29、t)public static void main(String args)new java3()(分数:40.00)填空项 1:_ (正确答案:第 1 处:extends Frame implements ActionListener, ItemListener第 2 处:for(int i=0; il. getItemCount(); i+)第 3 处:public void ItemStateChanged(ItemEvent evt))解析:解析 第 1 处类可以实现多个接口,接口之间用“,”隔开;第 2 处 reverseSelections 方法实现的是反选,遍历列表获得列表元素数应使用的是 getItemCount()方法;第 3 处 Java 是大小写敏感的。
copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
备案/许可证编号:苏ICP备17064731号-1