View Single Post
  #6 (permalink)  
Old 12-05-2007, 05:40 PM
wsaryada wsaryada is offline
Senior Member
 
Join Date: Jun 2007
Location: Bali, ID
Posts: 102
wsaryada is on a distinguished road
You can look in the ArrayList.java source code itself. It defined in the default constructor as follow:

Code:
/** * Constructs an empty list with an initial capacity of ten. */ public ArrayList() { this(10); }
You can find the source code in your JDK folder, in my PC it is C:\Program Files\Java\jdk1.6.0_03\src.zip
__________________
Website:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
- Blog:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Reply With Quote