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 |
Tags
- java
- Spring Boot
- kotlin
- 김영한
- Thymeleaf
- 스프링
- Servlet
- QueryDSL
- db
- http
- spring
- jpa
- 자바
- SpringBoot
- 백준
- springdatajpa
- JDBC
- 인프런
- transaction
- 스프링 핵심 기능
- JPQL
- pointcut
- Greedy
- Proxy
- 스프링 핵심 원리
- 알고리즘
- 그리디
- Exception
- Android
- AOP
Archives
- Today
- Total
목록우선순위 (1)
개발자되기 프로젝트
Thread 클래스의 메서드
1. Thread 우선순위 Thread.MIN_PRIORITY(=1)~Thread.MAX_PRIORITY(=10) 디폴트 우선순위: Thread.NORMAL_PRIORITY(=5) 우선 순위가 높은 Thread가 CPU의 배분을 받을 확률이 높음 setPriority()/ getPriority() Thread 우선순위 예제 class PriorityThread extends Thread{ @Override public void run() { int sum = 0; Thread t = Thread.currentThread(); System.out.println(t + " start"); for (int i=0; i
Java/다양한 기능
2021. 11. 2. 23:52