gpt4 book ai didi

java - 如何更新MAP中的值之一

转载 作者:太空宇宙 更新时间:2023-11-04 08:37:16 25 4
gpt4 key购买 nike

我有一个 map 对象 testMap声明为HashMap<String, Test> .

Test 是一个简单的类,其中包含对 Object 的引用和两个String值。

即,

public class Test {

private String name;
private String id;
private Object val;


public Test(Object val,String name.String id){
this.val =val;
this.id=id;
this.name = name;
}

我只想更新 HashMap “testMap”中的“名称”。我怎样才能做到这一点?

最佳答案

Test test = testMap.get("key");
if (test != null) {
test.name = "new name";
}

关于java - 如何更新MAP中的值之一,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6086842/

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