私はスレッドを使用しようとしています誰でも次のコードで何が間違っているか教えてください。私はメインにNullPointerException
を得ています。あなたのコンストラクタでオブジェクトをオブジェクトの内部で取得する方法は?
public class threadtest implements Runnable {
Thread t;
public threadtest(String name) {
Thread t = new Thread(name);
}
public void run() {
for(int i = 0; i <= 10; i++) {
try {
Thread.sleep(1000);
}
catch(Exception e) {
System.out.println(e);
}
}
}
public static void main(String args[]) {
threadtest ob = new threadtest("satheesh");
ob.t.start();
}
}
間違ったのはコードの形式です。 – Istao
最初に、この規約を使用する方が良いです:CamelCaseはThreadTest – bluish
@Danielのようなクラス名には、編集前には「
」がありませんでした。 –