Link to home
Start Free TrialLog in
Avatar of GENTP
GENTP

asked on

ArrayList of Objects OverWriting One Property Of The Object

So basically, I have an arraylist of type section. section is a class with a couple of properties, a count of the panels in the section, a name of the section, a weight of the section, an area of the section, and an arraylist of type Piece.

Piece is a class with properties for qty, length, name, description, cost, and the way its measured (per piece or per linear foot).

So each section is made up of a bunch of pieces.

The basic flow of the code is something along the lines of:
-get the list of the sections entered (there can be 1-12 sections, based on user input).
-initialize the sections with a list of Pieces that has length/qty/etc set to zero.
-add the sections to the sections' arraylist
-read an inport file associated with each section, parse through it for panel count, weight, area, etc, and update the section's arraylist.

Below is the code for that last step (reading the file is it's own function).

What is happening, is after the 4th line (readFile()), my tempSectionB was updated correctly. It has the right weight, area, and piece list. Loop through to the next section, and again, it has the correct section object for the import file. However, after adding it to the section's list, it overwrites the first section in the list's piece list. Everything else in the first and second section is different/valid (they have their own weight, area, panels, etc), but both now have the exact same piece list. Despite on the previous loop it having a different list.

So, first loop we have a piece list with a total qty of the pieces is, lets say 100. Second loop we have a piece list with a total qty of the pieces is 200. Then, magically, our FinalSectionList both have the qty of 200.

foreach(section tempSection in SectionsList)
{
      HtmlInputFile uploadedFile = tempSection.getFileForSection();
      string fileLoc = Server.MapPath("tempfiles//" + uploadedFile.Value.Substring(uploadedFile.Value.LastIndexOf("\\")+1));
      uploadFile(fileLoc, uploadedFile);
      section tempSectionB = readFile(fileLoc, tempSection);
      if(tempSectionB!=null)
            FinalSectionList.Add(tempSectionB);
      else
            return;
}

Any ideas why the piece lists are overwriting each other? We can't figure it out.
Avatar of SRigney
SRigney
Flag of United States of America image

Foreach loops have a problem in that they are "read-only".  The don't throw an error, but they don't behave correctly.  Change your loop to loop using an index and the problem will probably go away.

You can read more at http://www.thescripts.com/forum/thread251568.html
Avatar of GENTP
GENTP

ASKER

I swapped the code above for this, and still no luck:

listOfSections = new section[SectionsList.Count];
listOfSections = (section[])SectionsList.ToArray(typeof(section));
EmptyPieceList = null;
for(i=0;i<SectionsList.Count-1;i++)
{
      section tempSection = listOfSections[i];
      HtmlInputFile uploadedFile = tempSection.getFileForSection();
      string fileLoc = Server.MapPath("tempfiles//" + uploadedFile.Value.Substring(uploadedFile.Value.LastIndexOf("\\")+1));
      uploadFile(fileLoc, uploadedFile);
      section tempSectionB = readFile(fileLoc, tempSection);
      if(tempSectionB!=null)
            FinalSectionList.Add(tempSectionB);
      else
            return;
}
Not enough code to really tell, but:

1) Where do you initialize FinalSectionList?
2) readFile isn't modifying tempSection?
3) You know listOfSections is a shallow copy of SectionsList meaning they both point to the same underlying section instances (assuming section is a class)?
Avatar of GENTP

ASKER

1) FinalSectionList is declared earlier, but as an empty arraylist (ArrayList FinalSectionList = new ArrayList();). I have a method of the section class to update it's piece list, by passing in an arraylist of pieces, but in testing I switched it to adding the modified sections to a clean arraylist, hoping it would solve this problem (which it obviously didn't).

2) Readfile get's passed the the instance of tempSection. It then modifies it as needed, and returns the local copy of the section back to the calling function (thus assigning it to a new section).

3) Yes, section is a class.

Hope this gives you something to go on, and hopefully some suggestions.

Thanks
Speaking generally, you've either got two section variables referring to the same section instance, or two section instances referring to the same pieces arraylist.  Break after adding the 200 pieces to section 2.  Look at the name of section 1 and 2 to be sure they are different.  Then look at GetHashCode for the pieces arraylist in each section.  If they return the same hash code you've got two sections pointing at the same arraylist.
Avatar of GENTP

ASKER

All sections are pointing to the same pieces arraylist, based on hashcodes.

So that narrows down the problem a bit. Any idea why they are doing this though? I don't see a spot where I am confusing them in my code.
ASKER CERTIFIED SOLUTION
Avatar of mastoo
mastoo
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of GENTP

ASKER

I've made some changes, and now the hash codes are different at all times throughout the function, however, the end result is the same contents of the arraylists.

Here is the print outs of hashcodes for 3 sections at 3 diferent points throughout the function (the final one is at the very end).

90
91
92
93
B 94
B 95
B 96
B 97
fin 217
fin 366
fin 515
fin 664
Avatar of GENTP

ASKER

Turns out that I was overwriting it at another part of code (passing the default list by ref, and continually overwriting it with the new updated list).

It was using the getHash method that I finally tracked it down however.

Thanks mastoo, your help in the second thread was appreciated as well.
Glad to help