我有以下空白:
public void load() {
//loading big picture from the Internet
}
我希望它在一个新线程中运行。我可以这样调用这个过程:
new Thread(new Runnable() {
public void run() {
load();
}
}).start();
或者最好修改这个空白:
public void load() {
new Thread(new Runnable() {
public void run() {
//loading big picture from the Internet
}
}).start();
}
并简单地称之为:
load();
还是没有什么不同?