本帖最后由 黑马-小龙 于 2013-3-4 11:56 编辑
问题 class MyFrame extends JFrame {
private Thread th;
public void start() {
if(th == null) {
th = new Thread(new Runnable() {
public void run() {
MyFrame.this.run();
//这句代码如何理解?
}
});
}
th.start();
}
public void run() {
……
}
}
|
|