ArrayList is an array that grows dynamicaly when needed. In Java an array is of fixed length. Once the array is created the user needs to know the length of the array as to operate with it since the array cannot grow nor can be reduced in size. This drawback is overcome by ArrayList. ArrayList dynamically increases or decreses it size depending on its untility. ArrayList class extends AbstractList class. AbstractList extends AbstractCollection and implements List interface.
Programmers are frequently faced with the choice of using a simple array or an ArrayList. If the data has a known number of elements or small fixed size upper bound, or where efficiency in using primitive types is important, arrays are often the best choice. However, many data storage problems are not that simple, and ArrayList (or one of the other Collections classes) might be the right choice.
Array list is a data structure and is used to store the temperary values. Like list... you can store and pass the object in arrylist and get the values from that object by iterating the arrylist.
Arrylist is an arry only, but it is dinamic.in this increase and decrese dinamically.it is used to store the values temperarly.it accept values as an object,so it can store any thing like sting,int decimal.it uses boxing and unboxing for it.
1)What are the actual functions of JVM? 2)When to use a class and when to use an Abstract class? 3)what is the use of constructors other than creation of objects? 4)when to use constructors? 5)when to use Interface? 6)why java does not support pointers? 7)why multiple inheritance is not possible in java without using Interfaces?
While developing one in JSP page we are sending request to Struts frame work.If we click two times submit button then First time only it should accept request and second time should reject that request in struts frame work.
How we can do that in controller itself...I am waiting for your Response...