반응형
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 | 31 |
Tags
- InputDialog
- ObjectInputStream
- Linux세팅
- include액션태그
- 상관 서브 쿼리
- include 지시자
- 리눅스세팅
- ThreadGroup()
- 아이디중복
- 리눅스셋팅
- 스레드그룸
- first-child
- StringReader
- ID중복
- Linux셋팅
- interrupt()
- StringWriter
- String char[] 형변환
- 표현 언어
- include지시자
- Daemon()
- char[] String 형변환
- isinterrupted()
- interrupted()
- sleep()메소드
- 메모리스트림
- MemoryStream
- 상관서브쿼리
- 동기화
- first-of-child
Archives
- Today
- Total
목록interrupted() (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