Collections In .NET

Why a Collection?

  • Array size is fixed and cannot be increased dynamically.  However, in actual development scenarios, the same type of objects are needed to be processed and added dynamically, and the size of the unit holding the objects should grow or shrink accordingly. This functionality is provided in Collections.
  • The insertion and deletion of elements in an array is also costly in terms of performance.
  • Also, the way these objects should be stored can be different, there can be a requirement to store the objects sequentially, non-sequentially, sorted order, etc.
  • Collections come in handy as a return type in implementation of business methods, generally when data is obtained from a file or database, it can be a single or multiple objects. When one is not sure, it is safe to define return type as collection since it can hold multiple objects. This works even if a single or no object is returned.

Introduction

  • A collection is a set of similar type of objects that are grouped together.
  • System.Collections namespace contains specialized classes for storing and accessing the data.
  • Each collection class defined in .NET has a unique feature.

Collection Interfaces

There are some basic operations that are possible on any collection.

  1. Search specific object in the collection.
  2. Adding or removing objects dynamically in the collection.
  3. List the objects in the collection by iterating through it. And so on

These basic operations are defined in the form of interfaces. All the collection classes implement these interfaces to get the required functionality. The implementation can be different for different classes. For example, adding objects in an Array is different than adding objects in ArrayList collection. ArrayList grows and shrinks dynamically. Both the collections need the functionality of iteration using foreach loop to display the list of objects contained in them.

Types of collections

  • Arrays
    Array class is defined in System namespace. Arrays can store any type of data but only one type at a time. The size of the array has to be specified at compilation time. Insertion and deletion reduce the performance.

  • Advanced Collections
    Many times we can’t give number elements in the list and we need to perform different operations like inserting, deleting, sorting, searching, comparing, and so on. To perform these operations efficiently, the data needs to be organized in a specific way. This gives rise to advanced collections. Advanced collections are found in System.Collections namespace.

Advanced collections are again divided into two types-

Non-generic collections

Every element in non-generic collection is stored as System.Object type.

Examples

ArrayList, Stack, Queue, HashTable, and so on.

  • Boxing
    Conversion of value type to a reference type is known as boxing. When value is boxed, CLR allocates new object on the heap and copies the value of the value type into that instance. CLR returns a reference of newly created object. This is essentially an up cast as all types are derived from System.Object class. Developer need not use wrapper classes or structures for value types to perform the conversion.

    Example
    1. int speed =80  
    2. Object obj= speed;   
  • Unboxing
    It is an opposite operation of boxing, that is copies from reference type to value type on the stack. Explicit casting is required as it is a downcast. It is conversion of a derived type to a base type.

    Example
    1. int speed =80  
    2. Object obj= speed // boxing  
    3. int speed=(int) obj // unboxing   
Generic collections

These are defined in System.Collections.Generic namespace.

Examples

Generic list, generic queue, and so on. They are template based versions of their counterparts.

Generics help to define generic functions or classes which avoid repetition of code for different data types. Generic collections are very useful when implementing generic constructs like searching, sorting, stacks, Queues, lists, vectors, and so on. These constructs have a generic algorithm that can be implemented for any data type.

Data Type has to be specified at the time of instantiation of generic classes, thus providing type safety. For example, int data type is specified to instantiate ArrayList class. The methods of HashTable class also take parameter of type K. K is a placeholder. Compiler generates type specific implementation. The compiler does not create a brand new implementation of the generic type. It addresses only those methods and properties of the generic type that are actually invoked. Boxing, unboxing, and casting are not required as the stored elements in the generic collection are of specified type. 

 Some of the types of classes in generic collection are,

Advantages of generic collections

  • No boxing and type casts are required, thereby improves the performance of application.
  • Type errors are detected at compile time, thus avoids runtime errors.
  • Generic code once written can be reused by instantiating the class with a specific type.

Up Next
    Ebook Download
    View all

    Pristine

    Read by 0 people
    Download Now!
    Learn
    View all