Difference between array and arraylist.
Answer Posted / prem
Array:
It is mainly used to store and retrive similar datatype
elements.
It is a limited storage.
So it's size not growable and shrinkable.
It will create array out of bound exception while we adding
more elements in an array after exceeding array size..
While we remove elements from array,the array size will be
same.size will not get reduce.
ArrayList:
It is a class.
It is a collection.
It is used to store different datatype objects.
It is growable and shirnkable.
So whenever we add elements in an ArrayList the size of
ArrayList will grow..While we remove element from an
ArrayList the size of ArrayList will get reduce..
So memory will get save..
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How do you use substring in java?
Where import statement is used in a java program?
Explain how to force the garbage collection in java.
What is prime number in java?
What is time complexity algorithm?
Explain spliterator in java8?
What are advantages of exception handling in java?
Explain abstract class in java?
What is the different types of functions?
What is void data type?
a thread is runnable, how does that work? : Java thread
What is nextint java?
Does isempty check for null?
who can i handle multiple client in RMI
What is increment in java?