public class ReadThread { private static boolean ready; private static int number; private static class RT extends Thread{ public void run(){ while(!ready) Thread.yield(); System.out.println(number); } }