当我需要在内部类中设置布尔标志时,我的 Java 代码中经常会遇到这种情况。不可能为此使用原始布尔类型,因为内部类只能使用外部的最终变量,所以我使用这样的模式:
// class from gnu.trove is not of big importance, just to have an example
private final TIntIntHashMap team = new TIntIntHashMap();
// ....... code ............
final boolean[] flag = new boolean[]{false};
team.forEachValue(new TIntProcedure() {
@Override
public boolean execute(int score) {
if(score >= VICTORY_SCORE) {
flag[0] = true;
}
return true; // to continue iteration over hash map values
}
});
// ....... code ..............
最终数组而不是非最终变量的模式效果很好,除了它对我来说看起来不够漂亮。有人知道更好的 Java 模式吗?