赞题库-背景图
单项选择题

JDK中提供的文档生成器是 ____ 。

A.java.exe
B.javap.exe
C.javadoc.exe
D.javaprof.exe
<上一题 目录 下一题>
热门试题

单项选择题阅读下列代码:public class Person{static int arr[]=new int[10];public static void main(String args){System.out.println(arr [9]);}}该代码的运行结果是______。

A.编译时将产生错误
B.编译时正确,运行时将产生错误
C.输出零
D.输出空

单项选择题下列关于Test类的定义代码中,正确的是______。

A.class Test implements Runnable {public void run() {}public void someMethod() {}}
B.class Test implements Runnable {public void run();}
C.class Test implements Runnable {public void someMethod();}
D.class Test implements Runnable {public void someMethod() {}}