Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Spring
- 이렇게살아야되나자괴감이
- kotliln
- cache-control
- Kotlin
- i18n
- 브로틀리
- 알게뭐냐
- jsr303
- 지수반등
- 리얼월드HTTP
- 코드스피츠
- 워드프레스
- cross parameter
- brotli
- 클래스레벨밸리데이션
- 알고리즘
- HTTP
- 지뢰찾기
- LastModified
- jsr380
- 스프링
- etag
- 랜선아미안해
- 개미수열
Archives
- Today
- Total
취미개발 블로그와 마음수양
자바 - 다중 쓰레드 동기화 본문
으음.. 요지는
일단 쓰레드는 쓰레드 대로 돌리고 , 메소드를 하나 분리시켜서 싱크로나이즈드를 맥여야 동기화가 된다.
결과물
//1초에 한번씩 현재 시각과 안녕하세요를 출력하는 프로그램을 작성 package 챕23스레드; import java.util.Date; class printDate extends Thread{ Date d; int i=0; printDate(int i){ this.i=i; } public void run(){ while(true){ d = new Date(System.currentTimeMillis()); try { Thread.sleep(1000); System.out.print(d); message(); } catch (InterruptedException e) { } } } public synchronized void message(){ if(i==0) System.out.println(" 안녕하세요?"); if(i==1) System.out.println(" 안녕히 계세요~"); } } public class Quest02 { public static void main(String[] args) { Thread t = new printDate(0); t.start(); Thread t1 = new printDate(1); t1.start(); } }
'Language > java소스' 카테고리의 다른 글
자바 - 파일 불러와서 그 안에 들어있는 숫자들 정렬해주는 프로그램 (1) | 2014.04.18 |
---|---|
자바 - 압축해제 소스 (0) | 2014.04.17 |
자바 우주선, 미사일, 적 코드 (1) | 2014.04.16 |
중복되지 않은 난수 6개(로또) 생성하는.. 소스 (0) | 2014.04.16 |
학원에서 했던 첫번째 시험~g (0) | 2014.04.16 |