我在寫一個簡單的程序來解釋線程。無法運行線程程序
爲什麼它顯示下面的錯誤。 任何人都可以幫助我。
public class Myth extends Thread {
public void run() {
int val=65;
try {
for(int i=0;i<26;i++) {
System.out.println((char)val);
val++;
sleep(500);
}
}
catch(InterruptedException e) {
System.out.println(e);
}
// error pops up on this bracket saying class interface or enum expected.
// error in this line says-- illegal start of expression
public static void main(String args[]) {
Myth obj=new Myth();
obj.start();
}
}
}
而今年的問題格式獎授予...你! – 2012-08-01 07:41:29
對不起,愚蠢的格式。匆忙。 :p – user1560596 2012-08-01 07:51:36