티스토리 뷰
MyRunnable.java
public class MyRunnable implements Runnable
{
public void run(){ go(); }
public void go(){ doMore(); }
public void doMore(){
for(int i=0; i<10; i++) {
System.out.println("thread A: " + i);
}
}
}
ThreadTestDrive.java
public class ThreadTestDriveResult
{
public static void main(String[] args){
Runnable threadJob = new MyRunnable();
Thread myThread = new Thread(threadJob);
myThread.start();
for(int i=0; i<10; i++) {
System.out.println("main thread : " + i);
}
}
}
C:\javaExample>java ThreadTestDrive
main thread : 0
main thread : 1
main thread : 2
main thread : 3
main thread : 4
main thread : 5
thread A: 0
thread A: 1
thread A: 2
thread A: 3
thread A: 4
thread A: 5
thread A: 6
thread A: 7
main thread : 6
main thread : 7
main thread : 8
main thread : 9
thread A: 8
thread A: 9
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 윈도우 인증
- NSIS
- SQL
- height
- 연차
- 아이프레임
- onblur
- 스크립트
- 오라클
- 문자열
- 이벤트 상속
- 디비링크
- 이벤트
- 셋업
- 크롬
- 프로시저
- Setup
- DB링크
- 배열 변환
- MSSQL
- ajax
- 팝업
- 정규식
- 에누리
- unique
- scrollHeight
- 리사이즈
- 제약조건
- width
- 프로시져
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함