일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- hyperledger transaction
- html charset
- relative path
- html5 new tag
- #성적관리프로그램
- html video
- #자바상속#자바이즈어#is~a
- #CallByAddress
- html youtube
- html multimedia
- #C++ has~a
- #다차원포인터
- #3차원배열
- #bubbleSort
- html code
- #binary
- mac terminal command
- #android activity
- #JAVASCRIPT
- html plug-in
- #2차원배열
- 하이퍼레저패브릭
- git flow
- 토큰경제
- docker example
- #C++ 연산자함수오버로딩
- html id
- html object
- border-box
- #1차원배열
Archives
- Today
- Total
목록#스레드#thread (1)
A sentimental robot
Thread
public class Test01 extends Thread { // 스레드 쓰는 방법1. Thread 객체 상속받기 public static void main(String[] args) { Test01 t01 = new Test01(); t01.start(); // 대기상태 ; runnable state } } public class Test02 implements Runnable { // 방법2. Runnable interface를 상속 받아서 스레드가 아니라 스레드를 쓸 수 있는 환경을 만든다. public static void main(String[] args) { Test02 t02 = new Test02(); // t02.start(); t02는 스레드가 아니기 때문에 못부름 Thread t..
Java
2017. 12. 29. 11:49