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
why java uses class level type casting ?
What is compareto?
Describe the various concepts related to object oriented programming (oop).
How do you represent a space in regex java?
What are voids?
Can we override private methods?
What are actual parameters?
When should you make a function static?
Why do we use return statement?
What is the final keyword denotes?
What does regex mean?
Difference between static and dynamic class loading.
Which java collection does not allow null?
Is simpledateformat safe to use in the multithreaded program?
What is nullpointerexception in java?