关于下列代码编译或执行结果的描述中,正确的是( )。A.不能通过编译,TestThread类中不能定义变量和构造方法B.输出One One Two TWOC.输出Two One One TwoD.选项B或c都有可能出现

题目

关于下列代码编译或执行结果的描述中,正确的是( )。

A.不能通过编译,TestThread类中不能定义变量和构造方法

B.输出One One Two TWO

C.输出Two One One Two

D.选项B或c都有可能出现


相似考题
更多“ 关于下列代码编译或执行结果的描述中,正确的是( )。A.不能通过编译,TestThread类中不能定义变量和构造方法B.输出One One Two TWOC.输出Two One One TwoD.选项B或c都有可”相关问题
  • 第1题:

    关于下列代码编译或执行结果的描述中,正确的是( )。 public class Test{ public static void main(String argsE]){ TcstThread pml=new TestThread("One") pml.start; TestThread pm2=new TestThread("Tw0") pm2.start; } } class TestThread extends Thread( private String sTname=""; TestThread(String s){ sTname=s; } public void run{ for(int i=O;i<2;i++){ try{ sleep(1000); }catch(InterruptedException e){} system.out.print(sTname+""); } } }

    A.不能通过编译,TestThread类中不能定义变量和构造方法

    B.输出One One Two Two

    C.输出Two One One Two

    D.选项B或C都有可能出现


    正确答案:D
    D。【解析】启动两个线程,线程之间没有进行同步,所以B和C均有可能。

  • 第2题:

    以下对枚举类型名的定义中正确的是 ( )

    A.enuma={one,two,three};

    B.enuma{one=9,two=-1,three};

    C.enum a={"one" "two","three"};

    D.enum a{"one","two","three"};


    正确答案:B

  • 第3题:

    4、下列选项中,不能创建字典对象的语句是()。

    A.{'one':1, 'two':2, 'three':3}

    B.dict('one':1, 'two':2, 'three':3)

    C.dict([('one',1), ('two',2), ('three',3)])

    D.dict(zip(['one','two','three'], [1,2,3]))


    dict('one':1, 'two':2, 'three':3)

  • 第4题:

    以下对枚举类型名的定义中正确的是______。

    A.enum a={one, two,three};

    B.enum a{one=9,two=1,three};

    C.enum a={"one","two","three"};

    D.enum a{"one", "two","three"};


    正确答案:B
    解析:声明枚举类型用enum开头。例如:enumweekday(sun,mon,tue,wed,thu,fri,sat);说明:1、在C编译中,对枚举元素按常量处理,同时可以改变他们的值。2、枚举值可以用来做判断比较。3、一个整数不能直接赋给一个枚举变量。

  • 第5题:

    下列选项中,不能创建字典对象的语句是()。

    A.{'one':1, 'two':2, 'three':3}

    B.dict('one':1, 'two':2, 'three':3)

    C.dict([('one',1), ('two',2), ('three',3)])

    D.dict(zip(['one','two','three'], [1,2,3]))


    dict('one':1, 'two':2, 'three':3)