黑马程序员技术交流社区

标题: 摸底题目1,求大神解释 [打印本页]

作者: Itheima_yuan    时间: 2016-6-6 18:24
标题: 摸底题目1,求大神解释
运行下列程序,会产生什么结果
public class X extends Thread implements Runnable{
    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,程序会运行和启动




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2