阅读下列代码段。 class Test i mple ments Runnable{ public i nt run(){ i nt i =0; while (true){ i ++; Syste m.out .pri ntln("i

admin2012-12-02  10

问题 阅读下列代码段。
class Test i mple ments Runnable{
public i nt run(){
  i nt i =0;
  while (true){
   i ++;
   Syste m.out .pri ntln("i ="+i);
  }


上述代码的编译结果是(  )。

选项 A、程序通过编译并且run()方法可以正常输出递增的i 值
B、程序通过编译,调用run()方法将不显示任何输出
C、程序不能通过编译,因为while 的循环控制条件不能为“true”
D、程序不能通过编译,因为run()方法的返回值类型不是void

答案D

解析 while 的循环控制条件可以为true ,run()方法没有返回值,所以不能是i nt 型,故此程序不能通过编译。
转载请注明原文地址:https://kaotiyun.com/show/E1ID777K
0

相关试题推荐
最新回复(0)