what is the Arraylist limit (maximum) by default ?
Answers were Sorted based on User's Feedback
Answer / raj
Array List can store more than 3277000 numbers. However the
size of list is depends on the memory (heap) size. If it
reaches maximum the JDK throws out of memory exception.
| Is This Answer Correct ? | 67 Yes | 3 No |
Answer / veera
Array List is dynamic growing. so no maximum. length but It
is not synchronized.
by
veera.
| Is This Answer Correct ? | 41 Yes | 14 No |
Answer / rohit
the maximum limit of items stored in arraylist is approx. 6*10^8
| Is This Answer Correct ? | 7 Yes | 5 No |
Answer / venkat
ArrayList has index which is an int....so the maximum size
of arraylist is (2 power of 32) - 1
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / shreya tanavade
Sorry fo r d mistake...Arraylist default capacity is 10...Aftr that wen you add the 11 th element its size increases by 50%....i.e...it becomes 15..and it goes on increasing as u go on adding...
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / umamaheswaran
Hi All
The Answer is 62848
After this the JAVA will emit OutOfMemoryException
| Is This Answer Correct ? | 6 Yes | 8 No |
Answer / raj
Array limit is keep on growing .ther is no max size in an array
| Is This Answer Correct ? | 8 Yes | 11 No |
11. static class A { 12. void process() throws Exception { throw new Exception(); } 13. } 14. static class B extends A { 15. void process() { System.out.println(”B”); } 16. } 17. public static void main(String[] args) { 18. new B().process(); 19. } What is the result? 1 B 2 The code runs with no output. 3 Compilation fails because of an error in line 12. 4 Compilation fails because of an error in line 15.
What is size_t?
What happens if an exception is throws from an object's constructor?
If A Class Is Declared Without Any Access Modifiers, Where May The Class Be Accessed?
What is parsing a sentence?
A non-static inner class may have object instances that are associated with instances of the class’s outer class. A static inner class does not have any object instances.
What is the difference between the font and fontmetrics classes in java programming?
What is a singleton class in Java?
How define set in java?
program to find 25 square = 625 here the 625 of last two digits is equal to 25, i don't know excatly what this type of number is called
How do you write a scanner class in java?
How is Object Oriented Programming different from Procedure Oriented Programming?