填空题

关键字ASC和DESC分别表示  【5】  的含义。

【参考答案】

【5】升序排列和降序排列
<上一题 目录 下一题>
热门 试题

单项选择题
下列程序的输出结果是class Father{int m.n;Father(int a,int B) { m=a;n=b}void show ( ){System.out.println( m and n: +m+ +n);}}class Son extends Father{int p;Son (int a,int b,int C) { super(a,B) ;p=c;}void show(){supur.show( );System.out.println( p: +p);}}class Test {public static void main (String args[ ]){ Son s:new Son(6,7,8); s.show( );}}
A.m and n:6 8   p:7
B.m andn:6 7  p:8
C.m and n:7 8   p:6
D.m and n:8 7  p:6
填空题
在面向对象的设计中,用来请求对象执行某一处理或回答某些信息的要求称为 【4】 。
相关试题
  • 下列程序中,实例tat是监听器,fr是事件源...
  • Java Applet 中的事件处理机制与Java Ap...
  • 滚动窗口JScrollPane是带动滚动条的面板,...
  • catch子句都带有一个参数,该参数是某个异...
  • Java语言的各种数据类型之间提供两种转换,...