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
- 구현
- Tree
- Stack
- Number Theory
- string
- 자바
- SQL
- Binary Search
- dynamic programming
- array
- java
- 파이썬
- Matrix
- greedy
- simulation
- database
- Data Structure
- implement
- Method
- geometry
- Class
- hash table
- bit manipulation
- 코테
- Math
- two pointers
- sorting
- Binary Tree
- 코딩테스트
- Counting
Archives
- Today
- Total
목록group (1)
코린이의 소소한 공부노트
쓰레드의 우선순위와 그룹
[쓰레드의 우선순위] 1. 작업의 중요도에 따라 쓰레드의 우선순위를 다르게 하여 특정 쓰레드가 더 많은 작업 시간을 갖도록 할 수 있다. void setPriority(int newPriority) // 쓰레드의 우선순위를 지정한 값으로 변경한다. int getPriority(); // 쓰레드의 우선쉰위를 반환한다. public static final int MAX_PRIORITY = 10; // 최대 우선순위 public static final int MIN_PRIORITY = 1; // 최소 우선순위 public static final int NORM_PRIORITY = 5; // 보통 우선순위 2. JVM은 우선순위를 10단계로 해놓은 반면 winOS는 32단계로 해놨기 때문에, 우리가 쓰레드의 우..
Java
2022. 11. 30. 20:41