填空题

在数据结构中,从逻辑上可以把数据结构分成线性结构和 【1】 。

【参考答案】

非线性结构
<上一题 目录 下一题>
热门 试题

单项选择题
有如下程序: public class MethLoad { public static void main(String args[]) { MethLoad classObj=new MethLoad(); classObj.methtest(4); classObj.methtest(4.0); } void methtest(double d) { double sum=2*d; System.out.println( The result is: +sum); } void methtest(int n) { int sum=4*n; System.out.println( The result is: +sum); } }程序的运行结果为( )。
A.The result is:16 The result is:8.0
B.The result is:8.0 The result is:16
C.The result is:8 The result is:16.0
D.The result is:16.0 The result is:8
单项选择题
指出下面哪一项是在抽象类中声明一个抽象方法。( )
A.public abstract method();
B.public abstract void method();
C.public void abstract Method();
D.public void method(){abstract;}
相关试题
  • bar为一JSerollBar组件,阅读下面程序段,...
  • 【14】 是运行Java小应用程序的一个软件...
  • 下列JApplet实现了一个不可编辑的JTextArea...
  • J2SDK的RMI命令有4个,其中用于激活系统...
  • 当用户在TextField中输入一行文字后,按回...