Menu



Manage

Cord > Study_JAVA 전체 다운로드
파일 목록
Study_JAVA > 13/BeepThreadEx.java Lines 14 | 281 바이트
다운로드

                        package week13;

public class BeepThreadEx  {
	public static void main(String[] args) throws InterruptedException {
		Thread thread = new BeepThread();
		thread.start();
		
		for (int i = 0; i<5 ; i++) {
			System.out.println("*****");
			Thread.sleep(1000);
		}
	}
}