在下画线上补充代码。
本题的功能是输出字符串"welcome!"和表达式"a/b=
c",以及输出"\\do something"。
Public class javal{
Pubhc static void main(string[]args){
System.out.println( );
System.out.println( );
System.out.println( );
}
}
本题的功能是监听键盘键的敲击,并显示在窗口中。
import javax,.swing.*;
importjava.awt.*; ,
import java.awt.event.*;
public class java3extends JFrame. extends KeyListener
{
private String linel=""line2=""
private String line3=""
private JTextArea textArea;
public java3
{
super("java3");
textArea=new JTextArea(10,15);
textArea.setText("Press any key on the key-
board…");
textArea.setEnabled(false);
addKeyListener(this);
getContentPane.add(textArea);
setSize(350,100);
show;
}
public void keyPressed(KeyEvent e)
{
linel="Key pressed:"+e.getKeyText(e.
getKeyCode);
setLines2and3(e);
}
public void keyReleased(KeyEvent e)
{
linel="Key released:"+e.getKeyText(e.
getKeyCode);
setLines2and3(e):
}
public void keyTyped(KeyEvent e)
{
Linel="Key typed:"+e.getKeychar;
setLines2and3(e);
}
private void setLines2and3(KeyEvent e)
{
line2="This key is"+(e.isActionKey?""
:"not")+"an action key";
String temp=e.getKeyModifiersText(e.get-
Modifiers);
hne3="Modifier keys pressed:"+(temp.e-
quals("")?"none":temp);
textArea.setText(linel+"\n"+line2+"\n"
+line3+"\n");
}
public static void main(String args[])
{
java3 app=new java3;
addWindowListener(new Windowadapted
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});
}
}
本题是一个Applet,页面上有一个按钮“请单击”,单击该按钮后弹出一个对话框,对话框上有三个按钮“橙色”、“蓝色”和“红色”,单击其中任意一个按钮,则可以将对话框的背景色设置为按钮名称所对应的颜色。
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class java2 extends JApplet
{
private JFrame. framet;
{
frame=new JFrame;
frame.setTitle("java2");
frame.setSize(300,200);
frame.getContentPane.add(new ButtonPanel
);
JButton PopButton=new JButton("请单击");
getContentPane.add(PopButton);
PopButtom addActionListener(new ActionListener;
{
public void actionPerformed(ActionEvent evt)
{
if(frame.isVisible)frame.setVisible(false);
else ;
}
});
}
}
class ButtonPanel extends JPanel
{
private class ColorAction implements ActionLis-
tener
{
private Color backgroundColor;
public void actionPerformed(ActionEvent action-
event)
{
setBackground(backgroundColor);
repaint;
}
public ColorAction(Color color)
{
backgroundColor=color;
}
}
public ButtonPanel
{
JButton jbutton=new JButton("橙色");
JButton jbuttonl=new JButton("蓝色");
JButton jbutton2=new JButton("红色");
add(jbutton);
add(jbuttonl);
add(jbutton2);
ColorAction coloraction=new ColorAction(Color.orange);
ColorAction coloractionl=new ColorAction(Color.blue);
ColorAction coloraetion2=new ColorAction(Color.red);
ibutton.addActionListener(coloraction);
ibuttonl.addActionListener(coloractionl);
jbutton2.addActionListener(coloraction2);
}
}
用来导入已定义好的类或包的语句是( )。
在下画线上补充代码。
本题的功能是输出字符串"welcome!"和表达式"a/b=
c",以及输出"\\do something"。
Public class javal{
Pubhc static void main(string[]args){
System.out.println( );
System.out.println( );
System.out.println( );
}
}
下列关于构造方法的叙述中,错误的是( )。
下列能够正确创建线程的方法是( )。
Ⅰ.继承java.1ang.Thread类,并重写run方法
Ⅱ.继承java.1ang.Runnable类,并重写start方法
Ⅲ.实现java.1ang.Thread接口,并实现run方法
IV.实现java.1ang.Runable接口,并实现run方法
下列有关数组的叙述中,错误的是( )。
在文件类提供的方法中,用于创建目录的方法是( )。
下列关于Java布尔类型的描述中,正确的是( )。
数据库设计中,用E-R图来描述信息结构但不涉及信息在计算机中的表示,它属于数据库设计的( )。
高级经济师考试试题精选练习(1)
高级经济师考试模拟练习题之单选题(1
高级经济师考试试题精选练习(2)
高级经济师考试试题精选练习(3)
高级经济师考试试题:经济法案例试题精
高级经济师考试模拟试题及答案
高级经济师考试试题及答案:单选练习题
高级经济师考试试题:经济法案例试题精
高级经济师考试模拟题及答案练习(1)
高级经济师考试模拟题及答案练习(2)