Strange things with java...

R

Roberto Nicastro

Hi all,
i have this piece of code

Suppose that lstA is List of 3 Objects

List<Object> lstA = ...something;
List<Object> lstB = lstA;
....
[block A] //this is a block of code
....

Inside block A i remove one item from lstA, so lstA become a List of 2
Objects. Inside block A i never touch lstB.
Why at the end of block A also lstB is with 2 elements? How is this
possible?

Thanks in advance

R
 
P

Patricia Shanahan

Roberto said:
Hi all,
i have this piece of code

Suppose that lstA is List of 3 Objects

List<Object> lstA = ...something;
List<Object> lstB = lstA;
...
[block A] //this is a block of code
...

Inside block A i remove one item from lstA, so lstA become a List of 2
Objects. Inside block A i never touch lstB.
Why at the end of block A also lstB is with 2 elements? How is this
possible?

Neither lstA nor lstB is a list. They are both reference variables that
are initialized as pointers to the same List object.

Although block A does not touch lstB, it does remove an element from the
List it points to.

Patricia
 
R

Richard Senior

Roberto said:
Suppose that lstA is List of 3 Objects

List<Object> lstA = ...something;
List<Object> lstB = lstA;
...
[block A] //this is a block of code
...

Inside block A i remove one item from lstA, so lstA become a List of 2
Objects. Inside block A i never touch lstB.
Why at the end of block A also lstB is with 2 elements? How is this
possible?

Because lstA and lstB are pointers. All objects are. When you assign
lstB = lstA, you make lstB point at the same list; you make lstB ==
lstA. Perhaps what you wanted to do was make lstB a copy of lstA? Or
perhaps you wanted to go further and make lstB a copy of lstA and all
its members copies of the members in lstA? Have you thought about what
happens if you change an object in either list?
 
R

Raghav

Hi all,
i have this piece of code

Suppose that lstA is List of 3 Objects

List<Object> lstA = ...something;
List<Object> lstB = lstA;
...
[block A] //this is a block of code
...

Inside block A i remove one item from lstA, so lstA become a List of 2
Objects. Inside block A i never touch lstB.
Why at the end of block A also lstB is with 2 elements? How is this
possible?

Thanks in advance

R

Actually here you have got one list in memory and 2 references to
that. So when u modify the list, it is reflected in either of
references pointing to that List.
HTH.
 
E

Eric Sosman

Roberto Nicastro wrote On 05/11/07 13:51,:
Hi all,
i have this piece of code

Suppose that lstA is List of 3 Objects

List<Object> lstA = ...something;
List<Object> lstB = lstA;
...
[block A] //this is a block of code
...

Inside block A i remove one item from lstA, so lstA become a List of 2
Objects. Inside block A i never touch lstB.
Why at the end of block A also lstB is with 2 elements? How is this
possible?

An analogy (I love analogies!) that may help you
understand what others have pointed out: lstA is the
number on the debit card in your wallet, and lstB is
the same string of digits recorded in your password-
protected on-line form-filler assistant. In [block A]
you hand the card to a local merchant to pay for your
new jPea, 150 silver splonders including VAT. Then
you go to your computer, use the automatic form-filler
to log in to your bank account, and check the balance.
Are the 150 silver splonders still there to be spent?

One bank account, two copies of the account number.
One List instance, two references to it. Spend money
with the debit card, and the balance change is visible
when you use the copied number. Change the List via
listA, and the change is visible through listB.
 
R

Roberto Nicastro

lstA. Perhaps what you wanted to do was make lstB a copy of lstA? Or
perhaps you wanted to go further and make lstB a copy of lstA and all
its members copies of the members in lstA? Have you thought about what
happens if you change an object in either list?

I want to create an exact copy of lstA. So, to create a real copy i
have to create a new List object

List lstA = ...something
List lstB = new ArrayList();

for (Iterator it; it = lstA.iterator(); it.hasNext(); ){
lstB.add(it.next());
}

I think this will work for me.
Thank you all

R
 
R

Richard Senior

Roberto said:
I want to create an exact copy of lstA. So, to create a real copy i
have to create a new List object

List lstA = ...something
List lstB = new ArrayList();

for (Iterator it; it = lstA.iterator(); it.hasNext(); ){
lstB.add(it.next());
}

I think this will work for me.

Yes, but bear in mind that the two lists, while they are different
lists, contain the same elements. If you change an object in lstA, it
also changes in lstB.

Have a look at this
http://forum.java.sun.com/thread.jspa?threadID=487186&messageID=2281852
and do some searches on "shallow copy" and "deep copy".
 
J

Jussi Piitulainen

Roberto said:
I want to create an exact copy of lstA. So, to create a real copy i
have to create a new List object

List lstA = ...something
List lstB = new ArrayList();

for (Iterator it; it = lstA.iterator(); it.hasNext(); ){
lstB.add(it.next());
}

I think this will work for me.

There's an addAll method you could use instead of a loop of your own:

List lstB = new ArrayList();
lstB.addAll(lstA);

Look it up in Javadoc.
 
P

Patricia Shanahan

Jussi said:
There's an addAll method you could use instead of a loop of your own:

List lstB = new ArrayList();
lstB.addAll(lstA);

Look it up in Javadoc.

Or, even simpler:

List lstB = new ArrayList(lstA);

Patricia
 
C

Chris Smith

Roberto Nicastro said:
List<Object> lstA = ...something;
List<Object> lstB = lstA;

While you've got several explanations of what's going on, you haven't
gotten much by way of how to make it act as you'd like. To do that, you
could change the second line there to:

List<Object> lstB = new ArrayList(lstA); // or other List implementation

That would cause lstB to point to a different List, which has its
CONTENTS initialized from the list that lstA points to. Then you could
modify the list that lstA points to, and the list that lstB points to
would be unchanged.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top