現在程序中有許多涉及長耗時響應過程的處理
一個耗時響應過程應該采用回調和線程來處理
Viewer類代碼如下
public class Viewer{
private int count;
public Viewer(int count){
this
}
public void printNewCount(int newCount){
System
}
public int getCount() {
return count;
}
public void setCount(int count) {
this
}
}
[
From:http://tw.wingwit.com/Article/program/Java/gj/201311/27715.html