Skip to main content

CONSTRUCTORS IN C#

Constructors have the same name as the class, and usually initialize the data members of the new object.
Constructors allow the programmer to set default values, limit instantiation, and write code that is flexible and easy to read.
A constructor that takes no parameters is called a default constructor. Default constructors are invoked whenever an object is instantiated using the new operator and no arguments are provided to new.
If a class is not defined with the constructor then the CLR (Common Language Runtime) will provide an implicit constructor which is called as Default Constructor.
A class can have any number of constructors provided they vary with the number of arguments that are passed, which is they should have different signatures.
  • Constructors do not return a value.
  • Constructors can be overloaded.
  • If a class is defined with static and Non-static constructors then the privilege will be given to the Non-static constructors.
The following are the access modifiers for constructors,
1) Public : A constructor that is defined as public will be called whenever a class is instantiated.
2) Protected : A constructor is defined as protected in such cases where the base class will initialize on its own whenever derived types of it are created.
3) Private : A constructor is defined as private in such cases whenever a class which contains only static members has to be accessed will avoid the creation of the object for the class.
4) Internal : An internal constructor can be used to limit concrete implementations of the abstract class to the assembly defining the class. A class containing an internal constructor cannot be instantiated outside of the assembly.
5) External : When a constructor is declared using an external modifier, the constructor is said to be an external constructor.
Types of Constructors
1) Static : Used for initializing only the static members of the class. These will be invoked for the very first time the class is being loaded on the memory. They cannot accept any arguments. Static Constructors cannot have any access modifiers.
Static ClassName()
{
//Initialization statements;
}
2) Non-Static : Used for initializing the Non-Static and Static members of a class. These will be invoked everytime a new object is defined for a class.
Public ClassName([arguments])
{
//Initialization statements;
}
 
A Very Clear Example:
Base Class:
using System;
using System.Collections.Generic;
using System.Text;
namespace Constructor1
{
public class BaseClass
{
public BaseClass()
{
Console.WriteLine("Base Class Constructor without parameter");
}
public BaseClass(int Age)
{
Console.WriteLine("Base Class Constructor with parameter {0}",Age);
}
}
}
Derived Class:
using System;
using System.Collections.Generic;
using System.Text;
namespace Constructor1
{
public class DerivedClass:BaseClass
{
public DerivedClass()
{
Console.WriteLine("Derived Class Constructor without parameter");
}
public DerivedClass(int Age): base(Age)
{
int sal = Age * 5;
Console.WriteLine("Derived Class Constructor with parameter {0}, Calculated SAL {1}",Age, sal);
Console.ReadLine();
}
}
}
Program Class:
using System;
using System.Collections.Generic;
using System.Text;
namespace Constructor1
{
class Program
{
static void Main(string[] args)
{
BaseMachi bm = new BaseMachi();
DerivedClass dm = new DerivedClass();
BaseMachi bm1 = new BaseMachi(10);
DerivedClass dm1 = new DerivedClass(10);
}
}
See the output of this program. You'll come to a final conclusion about the Constructors in C#. 

Happy Programming......

Comments

Popular posts from this blog

Multiplication Table in SQL Server

Multiplication Table in SQL Server This query gives the multiplication table from 1 to 10. DECLARE @A INT,                   @B INT,                   @C INT,                   @D VARCHAR (100)                   SELECT @A=1                  PRINT ' MULTIPLICATION TABLE 1-10' /****************************************/ /* Created By : Loganathan V */ /* Created On: 20-Sep-2010, Monday */ /* Purpose : Multiplication Table */ /* How to : RUN THE QUERY */ /****************************************/ WHILE (@A<=10) BEGIN         ...

Large Volume of Dataset Transfer from WCF to Silverlight

Most of the times the developers, architects have the problem to retrieve large volume of data from WCF Service to Silverlight client applications. It’s a big head ache for developers. But it’s not up to that much problematic one. We can solve this problem by changing some property’s values in Web.config of WCF Service host, Silverlight application’s ServiceReference.clientconfig and Silverlight XAP hosted ASP.Net Applications. Here I’m going to explain the Web.config changes we need to retrieve large volume of data from WCF Service and also uploading large size of files to the Server. Last week, I was trying to figure out why my WCF service call always threw the generic NotFound exception when trying to retrieve large datasets. Even though, I set buffer limits to 2147483647 (int.MaxValue) in the Silverlight ServiceReferences.ClientConfig file and WCF Service configuration Section under web.config the problem was persisting. I tried so many things from Data Access Layer and UI. Finall...

Node.js for Everything

Lots of web applications using Javascript for front end for a long time. Javascript enabling people to build really really interactive great products, we can use Javascript on the front end and on the back end. So, what do we do on the back end? Node.js is the answer. Here we'll see some of the npm packages that'll help us to enable Javascript in back end as well. Load balancing is the main one when you plan to host your application server environment. Node offers pm2 package to easy your job. It's modern CLI process manager for Node apps with a builtin load-balancer. npm install pm2@latest -g pm2 start app.js Next thing is running applications continuously. Yeah, we've a node package named forever. It's a simple CLI tool for ensuring that a given node script runs continuously. npm install forever -g forever start app.js Enabling debugging in Javascript client applications are easy. Debugging a node application is sometimes a black box sometimes not, but one of the ...