단축키 확인: Ctrl + /
많이 쓰는 단축키
1. 제목 토글: Ctrl + Alt + 1
2. 본문 토글: Ctrl + Alt + 2
3. 글머리 기호 토글: Ctrl + Alt + 4
4. 글자색, 배경색: Ctrl + Alt + [ 또는 ]
- 글자색이에요, 배경색이에요
5. 코드 블럭: Ctrl + Alt + ,
public class CallableMainV1 {
public static void main(String[] args) throws ExecutionException, InterruptedException {
ExecutorService es = Executors.newFixedThreadPool(2);
Future<Integer> future = es.submit(new MyCallable());
Integer res = future.get();
log(res);
es.shutdown();
}
static class MyCallable implements Callable<Integer> {
@Override
public Integer call() {
log("Runnable start");
sleep(2000);
int value = new Random().nextInt(10);
log("Runnable end");
return value;
}
}
}
'티스토리 설정' 카테고리의 다른 글
검색엔진에 티스토리 favicon 적용하는 법 (0) | 2024.03.15 |
---|