2010-02-09から1日間の記事一覧

38. スレッドの通信

38. スレッドの通信 スレッドを一時的に待機 L:\lesson095\test.java class test extends Thread { static Neko neko; public static void main(String args[]) { neko = new Neko(); new test().start(); new test().start(); } public void run() { neko.t…