單項(xiàng)選擇題
Public class Holt extends Thread{
Private String sThreadName;
Public static void main(String argv[]) {
Holt h=new Holt(); h.go(); Holt(){};
Holt(String s){ sThreadName=s;
Public String getThreadName() { return sThreadName;} }
Public void go(){
Hot first=new Hot("first"); first.start();
Hot second=new Hot("second"); second.start();
}
Public void start() {
For(int i=0;i<2;i++) {
System.out.print(getThreadName()+i); Try{
Thread.sleep(100); }catch(Exception e){
System.out.print(e.getMessage()) ; } } }
}
當(dāng)編譯運(yùn)行上面代碼時(shí),將會(huì)出現(xiàn)()