Constructor and its Types

What is a constructor in C#? Explain different types of constructor . 

A special method of the class that is automatically invoked when an instance of the class is created is called a constructor. The main use of constructors is to initialize the private fields of the class while creating an instance for the class. When you have not created a constructor in the class, the compiler will automatically create a default constructor of the class. The default constructor initializes all numeric fields in the class to zero and all string and object fields to null.

Some of the key points regarding constructor are

  • A class can have any number of constructors.
  • A constructor doesn't have any return type, not even void.
  • A static constructor can not be a parametrized constructor.
  • Within a class, you can create one static constructor only. 

In C#, constructors can be divided into 5 types

  1. Default Constructor
  2. Parameterized Constructor
  3. Copy Constructor
  4. Static Constructor
  5. Private Constructor 

Default Constructor in C#

A constructor without any parameters is called a default constructor; in other words, this type of constructor does not take parameters. The drawback of a default constructor is that every instance of the class will be initialized to the same values and it is not possible to initialize each instance of the class with different values. The default constructor initializes: 

  1. All numeric fields in the class to zero.
  2. All string and object fields to null.

Example

  1. using System;  
  2. namespace DefaultConstractor  
  3. {  
  4.     class addition  
  5.     {  
  6.         int a, b;   
  7.         public addition()   //default contructor  
  8.         {  
  9.             a = 100;  
  10.             b = 175;  
  11.         }  
  12.    
  13.         public static void Main()  
  14.         {  
  15.             addition obj = new addition(); //an object is created , constructor is called  
  16.             Console.WriteLine(obj.a);  
  17.             Console.WriteLine(obj.b);  
  18.             Console.Read();  
  19.         }  
  20.     }  
  21. }  

Parameterized Constructor in C#

A constructor with at least one parameter is called a parameterized constructor. The advantage of a parameterized constructor is that you can initialize each instance of the class with a different value.

  1. using System;  
  2. namespace Constructor  
  3. {  
  4.     class paraconstrctor  
  5.     {  
  6.       public  int a, b;  
  7.       public paraconstrctor(int x, int y)  // decalaring Paremetrized Constructor with ing x,y parameter  
  8.         {  
  9.             a = x;  
  10.             b = y;  
  11.         }  
  12.    }  
  13.     class MainClass  
  14.     {  
  15.         static void Main()  
  16.         {  
  17.             paraconstrctor v = new paraconstrctor(100, 175);   // Creating object of Parameterized Constructor and ing values   
  18.             Console.WriteLine("-----------parameterized constructor example by vithal wadje---------------");  
  19.             Console.WriteLine(" ");  
  20.             Console.WriteLine("value of a=" + v.a );  
  21.             Console.WriteLine("value of b=" + v.b);  
  22.             Console.Read();  
  23.         }  
  24.     }  
  25. }  

Copy Constructor in C#

The constructor which creates an object by copying variables from another object is called a copy constructor. The purpose of a copy constructor is to initialize a new instance to the values of an existing instance.

  1. using System;  
  2. namespace copyConstractor  
  3. {  
  4.     class employee  
  5.     {  
  6.         private string name;  
  7.         private int age;  
  8.         public employee(employee emp)   // declaring Copy constructor.  
  9.         {  
  10.             name = emp.name;  
  11.             age = emp.age;  
  12.         }  
  13.         public employee(string name, int age)  // Instance constructor.  
  14.         {  
  15.             this.name = name;  
  16.             this.age = age;  
  17.         }  
  18.         public string Details     // Get deatils of employee  
  19.         {  
  20.             get  
  21.             {  
  22.                 return  " The age of " + name +" is "+ age.ToString();  
  23.             }  
  24.         }  
  25.     }  
  26.     class empdetail  
  27.     {  
  28.         static void Main()  
  29.         {  
  30.             employee emp1 = new employee("Vithal", 23);  // Create a new employee object.  
  31.             employee emp2 = new employee(emp1);          // here is emp1 details is copied to emp2.  
  32.             Console.WriteLine(emp2.Details);  
  33.             Console.ReadLine();  
  34.         }  
  35.     }  
  36. }  

Static Constructor in C#

 When a constructor is created using a static keyword, it will be invoked only once for all of the instances of the class and it is invoked during the creation of the first instance of the class or the first reference to a static member in the class. A static constructor is used to initialize static fields of the class and to write the code that needs to be executed only once.

Some key points of a static constructor are: 

  • using System;  
  • namespace staticConstractor  
  • {  
  •     public class employee  
  •     {  
  •         static employee() // Static constructor   
  •         declaration{Console.WriteLine("The static constructor ");  
  •     }  
  •     public static void Salary()  
  •     {  
  •         Console.WriteLine();  
  •         Console.WriteLine("The Salary method");  
  •     }  
  • }  
  • class details  
  • {  
  •     static void Main()  
  •     {  
  •         Console.WriteLine("----------Static constrctor example by vithal wadje------------------");  
  •         Console.WriteLine();  
  •         employee.Salary();  
  •         Console.ReadLine();  
  •     }  
  •   }  
  • }  
  1. A static constructor does not take access modifiers or have parameters.
  2. A static constructor is called automatically to initialize the class before the first instance is created or any static members are referenced.
  3. A static constructor cannot be called directly.
  4. The user has no control over when the static constructor is executed in the program.
  5. A typical use of static constructors is when the class is using a log file and the constructor is used to write entries to this file.

Private Constructor in C#

When a constructor is created with a private specifier, it is not possible for other classes to derive from this class, neither is it possible to create an instance of this class. They are usually used in classes that contain static members only. Some key points of a private constructor are:

  • using System;  
  • namespace defaultConstractor  
  • {  
  •     public class Counter  
  •     {  
  •         private Counter()   //private constrctor declaration  
  •         {  
  •         }  
  •         public static int currentview;  
  •         public static int visitedCount()  
  •         {  
  •             return ++ currentview;  
  •         }  
  •     }  
  •     class viewCountedetails  
  •     {  
  •         static void Main()  
  •         {  
  •             // Counter aCounter = new Counter();   // Error  
  •             Console.WriteLine("-------Private constructor example by vithal wadje----------");  
  •             Console.WriteLine();  
  •             Counter.currentview = 500;  
  •             Counter.visitedCount();  
  •             Console.WriteLine("Now the view count is: {0}", Counter.currentview);  
  •             Console.ReadLine();  
  •         }  
  •     }  
  • }  
  1. One use of a private constructor is when we have only static members.
  2. It provides an implementation of a singleton class pattern
  3. Once we provide a constructor that is either private or public or any, the compiler will not add the parameter-less public constructor to the class.

Leave Comment

Important Topics

Title
Object Oriented Programming (OOP)
OOP vs POP
Class with Example
Objects
Access Modifiers
Encapsulation with example
C# Properties (GET, SET)
Method and Function
Abstraction
Polymorphism
Operator Overloading
Inheritance
Constructor and its Types
Exception Handling
Throwing an Exception