Menu



Manage

Cord > Study_JAVA 전체 다운로드
파일 목록
Study_JAVA > 13/LoopThreadEx.java Lines 17 | 334 바이트
다운로드

                        package week13;

public class LoopThreadEx {
	public static void main(String[] args) {
		for (int i= 1; i<=10; i++) {
			Thread thread = new LoopThread("thread_" + i);
			
			if (i != 10)
				thread.setPriority(Thread.MIN_PRIORITY);
			else
				thread.setPriority(Thread.MAX_PRIORITY);
			
			thread.start();
		}
	}
}