关于下列代码编译或执行结果的描述中,正确的是( )。
A.不能通过编译,TestThread类中不能定义变量和构造方法
B.输出One One Two TWO
C.输出Two One One Two
D.选项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都有可能出现
第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"};
第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]))
第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"};
第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]))