gpt4 book ai didi

Java:使用另一个 map 的信息创建一个新 map ,而不是创建引用

转载 作者:行者123 更新时间:2023-12-01 20:16:32 25 4
gpt4 key购买 nike

我找不到这个问题的确切答案,所以我只能问自己。

我有一个Map<Integer, State> states;有关特定日期的信息。每天,当天的信息都保存在 Map<Integer, DayLog> dayLog; 中。其中 DayLog 包含已保存的 Map<Integer, State> states; .

问题是,当我更改实时 states 时,全部保存statesdayLog由于创建的引用而不是新创建的信息,也会发生变化。

如何将信息保存在新 map 中,而不仅仅是创建引用?

希望这是可以理解的。提前致谢! :)

最佳答案

创建 DayLog 时,您需要进行深层复制:

/**
* Create a new DayLog object with the current set of states.
* This constructor will make a deep copy of the states so they cannot be
* changed later outside of this log.
* @param currentStates the states as they exist right now
*/
public DayLog(Map<Integer, State> currentStates) {
this.states = new HashMap<>();
for(Integer key : currentStates.keySet()) {
State state = currentStates.get(key);
State newState = new State(state); // assuming copy constructor
this.states.put(key, newState);
}
}

可能有多种方法可以实现此目的(克隆、使用 state.archive() 方法或其他方法),但这将是基本方法 - 创建现有状态的 map 现在就不要留下对实时数据的引用。

或者,使用数据库 - 它非常擅长存储数据。

关于Java:使用另一个 map 的信息创建一个新 map ,而不是创建引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45699637/

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