62,621
社区成员
发帖
与我相关
我的任务
分享
public class Try extends Thread{
public static void main(String args[ ]){
Try t = new Try( );
t.start( );
}
public void run(){
int i = 0;
while(i <5){
System.out.println("祝你成功!");
i++;
}
}
}