ArrayList() constructor is used to initialize a new instance of the ArrayList class which will be empty and will have the default initial capacity. ArrayList represents an ordered collection of an object that can be indexed individually. It is basically an alternative to an array. It also allows dynamic memory allocation, adding, searching and sorting items in the list.
Syntax:
public ArrayList ();
Important Points:
- The number of elements that an ArrayList can hold is known as the Capacity of the ArrayList. If the elements will be added to the ArrayList then capacity will be automatically increased by reallocating the internal array.
- Specifying the initial capacity will eliminate the requirement to perform a number of resizing operations while adding elements to the ArrayList if the size of the collection can be estimated.
- This constructor is an O(1) operation.
Example 1:
using System;
using System.Collections;
class Geeks {
public static void Main(String[] args)
{
ArrayList arrlist = new ArrayList();
Console.WriteLine(arrlist.Count);
}
}
|
Example 2:
using System;
using System.Collections;
class Geeks {
public static void Main(String[] args)
{
ArrayList arrlist = new ArrayList();
Console.Write( "Before Add Method: " );
Console.WriteLine(arrlist.Count);
arrlist.Add( "This" );
arrlist.Add( "is" );
arrlist.Add( "C#" );
arrlist.Add( "ArrayList" );
Console.Write( "After Add Method: " );
Console.WriteLine(arrlist.Count);
}
}
|
Output:
Before Add Method: 0
After Add Method: 4
Reference: