SyntaxFix
Write A Post
Hire A Developer
Questions
It will depend on the implementation, but from the Sun Java 6 source code:
int newCapacity = (oldCapacity * 3)/2 + 1;
That's in the ensureCapacity method. Other JDK implementations may vary.
ensureCapacity