Menu



Manage

Cord > Study_JAVA 전체 다운로드
파일 목록
Study_JAVA > 13/Calc.java Lines 16 | 326 바이트
다운로드

                        package week13;

public class Calc {
	private int memory;

	public int getMemory() {
		return memory;
	}

	public synchronized void setMemory(int memory) throws InterruptedException {
		this.memory = memory;
		Thread.sleep(2000);
		System.out.println(Thread.currentThread().getName() + ":" + this.memory);
	}
}