In Eclipse, I see that ArrayList objects have a modCount field. What is its purpose? (number of modifications?)
|
|
|
||
|
|
It allows the internals of the list to know if there has been a structural modification made that might cause the current operation to give incorrect results. If you've ever gotten The AbstractList docs give a good detailed description. |
||
|
|
|
|
From the 1.4 javadoc on AbstractList:
|
||
|
|
|
|
It's the number of times the structure (size) of the collection changes |
||
|
|
|
|
From the Java API for the mod count field:
|
||
|
|
|
|
Yes. If you ever intend to extend
Taking a look into the actual JDK source code and reading the javadocs (either online or in code) help a lot in understanding what's going on. Good luck. I would add, you can add JDK source code to Eclipse so that every F3 or CTRL+click on any Java SE class/method points to the actual source code. If you download the JDK, you should have the src.zip in the JDK installation folder. Now, in Eclipse's the top menu, go to Window » Preferences » Java » Installed JREs. Select the current JRE and click Edit. Select the rt.jar file, click at Source Attachment, click at External File, navigate to JDK folder, select the src.zip file and add it. Now the source code of the Java SE API is available in Eclipse. The JDK source code gives a lot of insights. Happy coding :) |
|||
|

src.zipis your friend. – Tom Hawtin - tackline Nov 3 at 18:23