Synchronized 썸네일형 리스트형 synchronized 연습 thread 연습 class Account { String name; int total; public Account(String name) { this.name = name; } // 순서 스레드 접근 영역 : 동기화 영역. synchronized void deposit(int money, String loc) { total += money; try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } System.out.println(loc+money+total); } int getTotal() { return total; } } class Bank e.. 더보기 이전 1 다음