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);
|
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?
| |||||||||
feedback
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
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.
| |||
|
feedback
|
|
Try this.
| |||||
feedback
|
|
You have to declare each object outside the | |||
|
feedback
|