【Android】Threadクラスを匿名クラスで実装
Threadクラスを匿名クラスで実装
自分用メモ
threadクラスを他で再利用しない場合の、匿名クラスで実装するコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
public class MyThread { public static void main(String[] args) { //prepare the thread as anonymous class. Thread thread = new Thread() { @Override public void run(){ for (int i = 0; i < 10; i++) { System.out.println("count: " + i); } } }; //It is Runnableeeee!! Thread thread2 = new Thread(new Runnable() { @Override public void run(){ for (int i = 0; i < 10; i++) { System.out.println("count: " + i); } } }); //start thread thread.start(); thread2.start(); } } |