class Foo{
void doStuff(){
int a=7;
this.doMore(a);
}
}
↑怎麼將final放在區域變數??
2007-03-20 23:33:43 · 1 個解答 · 發問者 虫 1 in 電腦與網際網路 ➔ 程式設計
那為什麼得再加上那段程式?是規定?
2007-03-21 18:25:47 · update #1
請參考我的做法
class Foo{
void doStuff(){
final int a=7;
this.doMore(a);
}
void doMore(int a){
// do something
}
}
2007-03-21 14:25:34 · answer #1 · answered by ? 7 · 0⤊ 0⤋