-
1位运算符分为逻辑运算符和【 】运算符。
-
2按“先进后出”原则组织根据的数据结构是______。
按“先进后出”原则组织根据的数据结构是______。
-
3Swing的外观采用【 】的外观感觉。
Swing的外观采用【 】的外观感觉。
-
4类Pnel默认的布局管理器是______。
类Pnel默认的布局管理器是______。
-
5本题中定义了长度为20的-维整型数组a,并将数组元素的下标值赋给数组元素,最后打印输出数组中下标为奇数的元素
本题中定义了长度为20的-维整型数组a,并将数组元素的下标值赋给数组元素,最后打印输出数组中下标为奇数的元素。 public class javal{ public static void main(String[]args){ int a[]= Int i: for a[i]=i for i++) =1: i=0;i<20;i++){ System.out.print(”a[”+i+”]=”+a[i]+”,“); }
-
6支持JDBC的数据库很好地实现了跨数据库平台的______性。
支持JDBC的数据库很好地实现了跨数据库平台的______性。
-
7paintComponent()方法定义于______类,并且以______类的实例作为参数。
paintComponent()方法定义于______类,并且以______类的实例作为参数。
-
8本题的功能是监听键盘键的敲击,并显示在窗口中。 import javax,.swing.*; importjava.awt.*; , import java.awt.event
本题的功能是监听键盘键的敲击,并显示在窗口中。 import javax,.swing.*; importjava.awt.*; , import java.awt.event.*; public class java3 extends 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); } }); } }本题的功能是监听键盘键的敲击,并显示在窗口中。 import javax,.swing.*; importjava.awt.*; , import java.awt.event.*; public class java3 extends 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); } }); } }
-
9在关系数据库系统中,当关系的模型改变时,用户程序也可以不变,这是()
A.数据的物理独立性
B.数据的逻辑独立性
C.数据的位置独立性
D.数据的存储独立性
-
10本题统计字符串str中字母a出现的次数,其中str为“(7&asdfasdf873eat687al(4a”,字母a存储在字符变量c中,最后打
本题统计字符串str中字母a出现的次数,其中str为“(7&asdfasdf873eat687al(4a”,字母a存储在字符变量c中,最后打印输出结果。
public class javal{
public static void main(String[]args){
String str="(*&7asdf adf873eat687al(4a";
char c;
int sum=0;
int i=0:
do{
c= ;
if()
sum++:
i++:
}while();
System.out.println("sum="+sum);
}
}
点击加载更多评论>>