选择题 10.  有如下代码:
    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();
    }
    }
    程序的运行结果为______。
【正确答案】 D
【答案解析】