Java/Excercise

thread ch01 ThreadTest1

낭구리 2021. 9. 7. 17:45
package ch01;

public class ThreadTest1 {

	//메인 쓰레드(작업자, 작업자의 단위)
	public static void main(String[] args) {

		for (int i = 0; i < 30; i++) {
			System.out.print("-");
			
			try {
				Thread.sleep(200);
			} catch (Exception e) {
			}
			
			
		}
	}

}

'Java > Excercise' 카테고리의 다른 글

thread ch01 MyThreadEx3  (0) 2021.09.07
thread ch01 ThreadTest2  (0) 2021.09.07
swing ch05 EventListenerEx9  (0) 2021.09.07
swing ch05 EventListenerEx8  (0) 2021.09.07
swing ch05 EventListenerEx7  (0) 2021.09.07