class Thread00 extends Thread {
public void run() {
for (int i = 0; i < 20; i++) {
System.out.println(Thread.currentThread().getName() + " " + i);
}
}
}
class Thread01 extends Thread {
public void run() {
for (int i = 0; i < 20; i++) {
System.out.println(Thread.currentThread().getName() + " " + i);
}
}
}
public class ThreadOrnek01 {
public static void main(String[] args) {
Thread00 th0 = new Thread00();
Thread01 th1 = new Thread01();
th0.start();
th1.start();
}
}
Seda
13/07/2012 — 13:47
Merhaba; yazınız için teşekkür ederim elinize sağlık. bende thread konusunu öğrenmek istiyorum. yani bu konuda daha çok yeniyim. yaptığım örnekte resmin soldan sağa doğru hareket etmesini istiyorum. pencere açılıyor. ama resim çıkmıyor. debug yapıp hatanın nerde olduğunu bulmaya çalıştım pencere oluştuktan sonra thread.exit() line not available hatası veriyor bu hatayı nasıl çözebilirim yardımcı olursanız çok sevinirim.