일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- JavaScript
- SAP ABAP
- 노드
- node.js
- 유럽여행
- Python
- oracle
- 딥러닝
- SAP
- db
- 자바스크립트
- 머신러닝
- 오라클
- docker
- 도커
- Java
- Spring Framework
- 자바
- 오라클 디비
- Mac
- Programming
- Oracle DB
- 파이썬
- sap mm
- 영어
- 비지니스영어
- SAP ERP
- IT
- nodejs
- ABAP
Archives
- Today
- Total
목록스트림 (1)
JIHYUN JEONG
□ 복습시간 - Thread : 프로세스 내의 개별적인 실행 흐름 : 프로세스는 프로그램 실행에 필요한 자원과 thread로 구성 : 모든 프로세스는 최소 하나 이상의 thread가 존재해야 실행 가능 - Thread 생성방법 1. Class class Test extends Thread{} Test t = new Thest(); t.start(); - Thread 생성방법 1. Runnable interface 구현 class Test2 implements Runnable{} Test2 t2 = new Test(); Thread thread = new Thread(t2) thread.start(); - Thread Synchronization : 다수의 thread가 공유 데이터에 접근해서 작업할 경우..
Information Technology/Java
2013. 2. 19. 11:35