这是在Runnable中创建新线程的好习惯吗?
public class ExampleThread Implements Runnable{
public void run() {
try {
//Some functions
}
catch (IOException e) {
}
new Thread() {
public void run()
// some functions
}}.start();
}
答案 0 :(得分:0)
在这种情况下有点错误,因为ExampleThread实际上不是一个线程,第一个try catch块将在主线程中执行。
从技术上讲,Runnable只是一个界面,所以我没想错。