问个关于线程的问题
谁看的出这个有啥问题吗public class qq extends Thread{
public void run(){
String s="打印机打字效果";
for(int i=0;i<s.length();i++){
System.out.print(s.charAt(i));
}
try{
sleep(1000);
}catch(InterruptedException ie){}
}
public static void main(String[] args){
qq q1=new qq();
q1.start();
}
}