수업내용 1교시 (09:30-10:20) 지난 시간 복습 - 오라클 요구사항에서 **분석 과정** 요구사항을 충족하기 위해서 데이터 = money) { try { Thread.sleep(1000);} catch(Exception e) {} balance -= money; } } // withdraw } class SyncTest_1 implements Runnable { BankAccount_1 ac1 = new BankAccount_1(); public void run() { synchronized(this){ while(ac1.balance > 0) { // 100, 200, 300중의 한 값을 임으로 선택해서 출금(withdraw) int money = (int)(Math.random() * 3 +..