What are variable length (Dynamic) Arrays in Java?
Answers
Answered by
0
In Java, Arrays are of fixed size. The size of the array will be decided at the time of creation. But if you still want to create Arrays of variable length you can do that using collections like array list
Answered by
3
ArrayList is a variable length or dynamic Array-like data structure in Java.
Similar questions