new Thread() {
@Override
public void run() {
// code
}
}
같은 기능의 코드
class MyThread extends Thread {
@Override
public void run() {
// code
}
}
// ...
new MyThread();
'Language' 카테고리의 다른 글
Clean Code 독서 & 메모 (0) | 2018.04.22 |
---|---|
[C] open() vs fopen() (low-level vs high-level I/O API) (0) | 2018.04.05 |
[Visual Studio 2017] scc display information error (0) | 2018.03.06 |
[Javascript] vue-cli example (0) | 2018.01.06 |
[Node.js] npm install option (0) | 2018.01.06 |
WRITTEN BY
- hojongs
블로그 옮겼습니다 https://hojongs.github.io/