问题 多项选择题

简单应用题请完成下列Java程序:创建一个具有2行3列的GridLayout管理器,包括Choice,Label,Button构件,布局为第1行包括一个Choice构件(包括2个选项item1和item2),一个Label构件(当选择Choice构件中的选项时,Label构件显示相应的名称,即,如果点击item1则Label中显示item1),和一个exit按钮(点击则退出应用程序),第2行包括3个Button构件。程序运行结果如下:

注意:请勿改动main( )主方法和其他已有语句内容,仅在下划线处填入适当的语句。import java.awt.*;import java.awt.event.*;public class ex1_2 extends Frame implements ActionListener, ItemListener{ private Label l; private String str="label"; private Choice choice1_2; public static void main(String[] arg) { new ex1_2(); } ex1_2() { setLayout( ); choice1_2 = new Choice(); choice1_2.addItem("item1"); choice1_2.addItem("item2");choice1_2. ; add(choice1_2); l=new Label(str); add(l); Button exit1_2 = new Button("exit"); exit1_2.addActionListener(this); add(exit1_2); for(int i=0; i<3; i++) add(new Button("button" + i)); setSize(300,300); pack(); show(); }public void actionPerformed(ActionEvent event) { if(event.getActionCommand().equals("exit")) { System.exit(0); } } public void itemStateChanged(ItemEvent event){ str=choice1_2. getSelectedItem(); l.setText(str); }}

答案

参考答案:new GridLayout(B,C)addItemListener(this)

解析:本题主要考查Java常用构件Choice和高级事件ItemEvent以及GridLayout布局管理器的用法。解题关键是,熟悉GridLayout布局管理器和ItemEvent的用法。在本题中,ItemEvent在教材中并没有给出确切的用法,但是可以根据ActionEvent的addActionEvent()方法和重载actionPerformed()方法来完成对动作事件监听的用法来类推出ItemEvent事件的监听方法,这里要求有根据已有知识进行举一反三的能力。

阅读理解

阅读理解。

     American schools begin in September after a long summer holiday. There are two terms (学期) in a

school year. The first term is from September to January and the second is from February to June. Most

American children begin to go to school when they are five years old. Most students are seventeen or

eighteen years old when they finish high school.

     High school students take only four or five subjects each term. They usually go to the same classes

every day, and they have homework for every class. But they do many interesting things after class.

     After high school, many students go to college (大学). They can go to a small or a large one. They

usually have to give a lot of money. So many college students work after class to get the money for their

studies.               

1. In America, school begins in         .

A. September  

B. July      

C. May      

D. February

2. Most American children go to school at the age of             .

A. five            

B. seven    

C. eighteen

D. seventeen

3. High school students             after class.

A. go to the same classes

B. go to work

C. do many interesting things

D. play basketball

4. In order to (为了)            , many American college students work after class.          

A. help their parents

B. get the money for their studies

C. help others

D. learn some useful things

5. After high school, many students go to             .

A. work     .            

B. make money

C. college                

D. cities

单项选择题 A1/A2型题