gpt4 book ai didi

java - 内部类中 boolean 标志的最终数组而不是非最终变量的模式

转载 作者:行者123 更新时间:2023-11-29 09:39:44 24 4
gpt4 key购买 nike

当我需要在内部类中设置 boolean 标志时,我的 Java 代码中经常会出现这种情况。不可能为此使用原始 boolean 类型,因为内部类只能使用外部的最终变量,所以我使用这样的模式:

// 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 ..............

final 数组而不是非 final 变量的模式效果很好,但对我来说它看起来不够漂亮。有人知道更好的 Java 模式吗?

最佳答案

使用 AtomicBoolean .

这是一个关于此问题的流行 StackOverflow 问题:Why are only final variables accessible in anonymous class?

关于java - 内部类中 boolean 标志的最终数组而不是非最终变量的模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11280902/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com