PublicclassHoltextendsThread{PrivateStringsThreadName;Publicstaticvoidmain(Stringargv[]){Holth=newHolt();h.go();Holt(){};Holt(Strings){sThreadName=s;PublicStringgetThreadName(){returnsThreadName;}}Publicvoidgo(){Hotfirst=newHot("first");first.start();Hotsecond=newHot("second");second.start();}Publicvoidstart(){For(inti=0;i<2;i++){System.out.print(getThreadName()+i);Try{Thread.sleep(100);}catch(Exceptione){System.out.print(e.getMessage());}}}}当编译运行上面代码时,将会出现()
A.编译时错误
B.输出first0,second0,first0,second1
C.输出first0,first1,second10,second1
D.运行时错误
第1题:
A. 5
B. x=5
C. "x="+5
D. "x="5
第2题:
以下哪个是Java应用程序入口的main方法头?
A.public static int main(char args[])
B.public static void main(String a[])
C.public static void MAIN(String args[])
D.public static void main(String argv)
第3题:
执行下面程序段的输出结果为()。 public class Q { public static void main(String argv[]) { int anar[]=new int[5]; System.out.println(anar[0]); } }
A.0
B.1
C.2
D.5
第4题:
执行下面的程序段,输出结果为______。
publicclassQ
{
publicstaticvoidmain(Stringargv[])
{
intanar[]=newint[5];
System.out.println(anar[0]);
}
}
第5题:
17、以下程序的运行结果为? public class Test5{ public static void main(String argv[]){ StringBuffer x = new StringBuffer("你好"); myMethod(x); System.out.print("x=" + x); } public static void myMethod(StringBuffer s){ s.append(",Hi"); } }