반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 표현 언어
- first-child
- StringReader
- Daemon()
- ThreadGroup()
- char[] String 형변환
- 스레드그룸
- sleep()메소드
- ID중복
- 동기화
- String char[] 형변환
- MemoryStream
- InputDialog
- Linux세팅
- 상관 서브 쿼리
- interrupt()
- Linux셋팅
- StringWriter
- first-of-child
- ObjectInputStream
- interrupted()
- 리눅스세팅
- include액션태그
- isinterrupted()
- 상관서브쿼리
- 리눅스셋팅
- 메모리스트림
- 아이디중복
- include 지시자
- include지시자
Archives
- Today
- Total
목록interrupt() (1)
다연이네
[days26] 스레드 - 동기화의 필요성
package days26; public class Ex09 { public static void main(String[] args) { //문제 - 동기화 // 이름을 출력하는 스레드 선언: PrintWorker // 이름을 출력하는 클래스: PrintMachine (기계는 1대라서 모든 스레드가 공유해서 사용) 공유자원 PrintMachine machine = new PrintMachine(); //머신1대(공유자원) PrintWorker t1 = new PrintWorker("배다연", machine); PrintWorker t2 = new PrintWorker("김동준", machine); PrintWorker t3 = new PrintWorker("남도산", machine); PrintWorke..
Java
2020. 10. 26. 23:44