如何将地图对象添加到java中的非静态列表对象
我对这段代码有问题,当我将地图对象添加到列表中时,所有先前添加的对象都将被更改。如何将地图声明为非静态?
for(Statment){
map.put(Key,value),
}
result.add(map);
I have problem with this code,when I add map object to list,all previous added object will be changed.how can I declare map as non static?
for(Statment){
map.put(Key,value),
}
result.add(map);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当您向容器添加某些内容时,您正在添加引用(而不是它引用的对象的副本)如果您想添加副本(这样,如果您可以更改原始内容,并且添加到列表中的副本不会更改) )你必须明确地复制它。
例如
When you add something to a container, you are adding the reference (not a copy of the object it references) If you want to add a copy (so that if you can change the original, and the copy added to the list does not change) you have to explicitly copy it.
e.g.
试试这个。
Try this.
您必须在
for
之外声明每个对象,否则您只会添加一个引用,并且任何修改都会修改所有引用。You have to declare each object outside the
for
otherwise you are adding just one reference, and any modification modifies all.