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

Javascript - Unanswered questions - Part 1

What is Event delegation? Event delegation is Javascript as it relates to the DOM. It basically means that if you attach an event listener to a DOM element that listener is not only firing on that DOM element. It's actually firing on every children in that. So, for instance if you have a navigation and so you've got an unordered list you've got list items and then you've got anchor tags inside that navigation what you have. If you add an event listener to the ul element in essence you're actually adding event listener to all of the children as well. In short, JS event listeners fir not only on a single DOM element but on all its descendants. What is Event Bubbling? It's actually inverse of Event delegation. Also known as propagation, events on an DOM element will bubble up and also fire on all parents.  What's the difference between "target" and "currentTarget"? target is the actual element that triggered the event for example clicked, wh

One or more ActiveX controls could not be displayed because..... in Outlook

Some times We've facing this problem in Microsoft Outlook. While trying to add the images to our mails or Opening some emails. 1) Your current security settings prohibit running ActiveX controls on this page, or 2) You have blocked a publisher of one of the controls As a result, the page may not display correctly. To resolve this problem follow these steps. In Microsoft Outlook : Go to Tools > Options > Mail Format > Message Format Check the options " Use MS Office Word to ....". Happy Mailing..........................

Microservices vs. APIs

It still surprises me just how many times I come across misconceptions around Micro Services and APIs. Often hearing phrases like micro services are fine grained web services or API is themselves are equivalent to micro services. These all sort of show fundamental misconceptions under the covers. So, I've written this just to really break that out and explain about what the key differences are in those two concepts. What is an API? An API, fundamentally Application Programming Interface, that is an interface. It's a way of making requests into a component. So it's the route that you go in to make those requests. In modern use that typically means a REST API, that's a call made using HTTP protocol using JSON data as the payload. What are Micro Services? So let's ensure we also have a clear crisp definition on what a micro service architecture really is. Micro-Services architecture is about breaking down large silo applications into smaller components. That are more m