0
Hello Everyone
Is Array List and Dynamic Array same??
2 Antworten
+ 1
Programmer</> Dynamic arrays overcome the limitations of static array which have fixed capacity.
In Java ArrayList itself is a dynamic array which grows automatically. Although they have an initial capacity but as soon as you make an insertion operation which just goes over the initial capacity then the capacity is automatically doubled.
+ 2
Yes.
Is that all you wanted to ask?