public class MyThread{
public MyThread(int m) {
super();
}
public void run() {
for (int x = 0; x < 201; x++) {
System.out.println("Thread Running" + x);
}
}
public static void main(String[] args) {
MyThread mt = new MyThread(200);
}
}
代碼正在運行,但未打印出來。這可能是構造函數,但老師告訴我只做一個公共無效運行和一個允許代碼運行的主要方法。我的代碼未打印但正在工作
還讓我知道如果我問的是錯誤類型的問題,我試着查看'如何提出問題'以獲得更好的問題。
你必須要對()的線程。您還需要實現Runnable或擴展Thread。 http://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html –
以及我做了mt.start();但它一直給我錯誤,所以我刪除它感謝您的幫助! – user3788930
查看[The Java Tutorials:Concurrency](http://docs.oracle.com/javase/tutorial/essential/concurrency/index.html),獲取有關如何使用線程的明確說明。 – Barranka