题目内容

给出下面的代码publicclass Test {voidprintValue(int m){do{System.out.println("Thevalue is"+m);}while(--m > 10 );}publicstatic void main(String arg[]) {inti=10;Testt= new Test();t.printValue(i);}}输出将是什么?

A. 8
B. 9
C. 10
D. 11

查看答案
更多问题

下面的哪些关键字通常用来对对象的加锁,该标记使得对对象的访问是排他的?

A. transient
B. synchronized
C. serialize
D. static

关于Java中this关键字的说法正确的是()。

A. this关键字是在对象内部指代自身的引用
B. this关键字可以在类中的任何位置使用
C. this关键字和类关联,而不是和特定的对象关联
D. 同一个类的不同对象共用一个this

下列说法不正确的是()

A. FileReader用文件字节流的读操作
B. PipedInputStream用于字节流管道流的读取操作
C. Java的io包包括字符流和字节流
DataInpustream创建的对象称为数据输入流

运行下列程序,产生的结果是 ()。public class X extends Thread implements Runable{public void run(){System.out.println("this is run()");}public static void main(String args[]){Thread t=new Thread(new X());t.start();}}

A. 第一行会产生编译错误
B. 第六行会产生编译错误
C. 第六行会产生运行错误
D. 程序会运行和启动

答案查题题库