标签:style color sp c ad new r bs 方法
如题!
public void doit(){
final int i=9;
Thread t=new Thread(new Runnable(){
@Override
public void run() {
// TODO Auto-generated method stub
i++;
}
});
方法中的内部类,操作本方法中的局部变量时,局部变量应该声明为final!!
标签:style color sp c ad new r bs 方法
原文地址:http://www.cnblogs.com/heysong/p/3987275.html