package thread.control;import static util.MyLogger.log;public class ThreadStateMain { public static void main(String[] args) throws InterruptedException { Thread thread = new Thread(new MyRunnable(), "myThread"); log("myThread.state1 = " + thread.getState()); // NEW log("myThread.start()"); thread.start(); Thread.sleep(1000); // myThread의 상태를 얻기 위함 lo..