为使纵拉杆在受到各向冲击力时都有一个弹簧起缓冲作用,两端的弹簧装在球头销的()。
A.两侧
B.同一侧
C.内侧
D.外侧
参考答案:A
蚯蚓在干燥的沙土或灰尘里不久就会死去,原因是( )
A.体壁干燥,无法呼吸
B.灰尘阻塞了呼吸通道
C.体内水分蒸发,影响呼吸
D.干燥环境中无食物
本题是一个Applet,功能是监听用对于文本域中文本的选择。页面中有一个文本域、一个“复制”按钮和一个文本框,选中文本域中部分文字后,单击按钮“复制”,所选文字将显示在文本框中。 import java.applet.Applet; import java.awt.*; import java.awt.event.*; public class java3 extends Applet implements ActionL-istener { TextArea ta=new TextArea(5,30); TextField tf=new TextField(30); Button button=new Button("复制"); String text="AWT提供基本的GUl组件,\n"+" 具有可以扩展的超类,\n"+"它们的属性是继承的。\n": public void init() { setLayout(new FlowLayout(FlowLayout.left)); ta.setText(text); ta.setEditable(true); add(ta); add(button); add(tf); ta.addActionListener(this); } public void actionPerformed(ActionEvent e) { String S; s=ta.getSelectText(); if(e.getSource()= =button) tf.setText(s); } }