Explain constructor.

Answers were Sorted based on User's Feedback



Explain constructor. ..

Answer / kamlesh sharma

constructors are special type of member functions of class
which is used to initilized a object

1. constructors are as same name of the class
2. don't have any return type
3. don't return any value


Types
1 default constructor
2 parametrized constructor and
3 copy constructures

constructors can be overload

Is This Answer Correct ?    15 Yes 0 No

Explain constructor. ..

Answer / subramanyam

Constructors are used for initialization.

Is This Answer Correct ?    11 Yes 1 No

Explain constructor. ..

Answer / vinay tiwari

//Constructor is a special member function its name is same
//as class name.It is used to allocate memory to object and
initilizes
//its field .you can also say that it is used to initilized
the object
//constructor invoke automatically when the object of its
class is created
class a
{
public int i;
public a()//default constructor
{
i=10;
}
public a(int x)//parameterized constructor
{
i=x;
}
public a(a ob)//copy constructor
{
i=ob.i;
}
public void display()
{
System.Console.WriteLine(i);
}
}
class b
{
static void Main(string [] args)
{
a ob=new a();
ob.display();
a ob1=new a(77);
ob1.display();
a ob2=new a(ob);
ob2.display();
}
}

Is This Answer Correct ?    10 Yes 2 No

Explain constructor. ..

Answer / rajkamal busi

Constuctor is a Method/Fuction

- Having Same Name of that Class(which it belongs to).
- which doesn't have any Return Type.
- and Get Executed Automatically when ever Object is
Created for that class.

Mostly Constuctor is Used for Initialization of Objects.

Is This Answer Correct ?    6 Yes 0 No

Explain constructor. ..

Answer / k.gnaneshwar

*-> Constructor is used for initializing the variables
during object creation.
*-> that means the code required for initializing the
variable should be writen in constructor.
CONSTRUCTOR DECLARATION RULES
* Constructor look like a method.
* Constructor have no return type.
* Constructor name should be same name as the class name.

(prog)

class simpleAddition
{
int a,b; //variable declaration
simpleAddition() //constructor declaration
{
a=6;
b=3;
}
int add() // method declaration
{
return a+b;
}
}

output:- 9

Is This Answer Correct ?    2 Yes 1 No

Explain constructor. ..

Answer / kousik

Main Advantage of Cons:
1)Object Initialization
2)Class don't have Private access specifier through use of private constructor avoid inheritance.
3)Types:a)static b)Instance
a)--Default automatically crates and no arguments are not supplied.
b)-Same name of class but we have n no of arguments.

Is This Answer Correct ?    0 Yes 3 No

Explain constructor. ..

Answer / kamlesh sharma

I am not a Great programmer,i dont know to write a single
line of code also, so i am explaning constructor in words,
without giving you an example program.

frankly to tell, i just watched like a movie when my friend
was typing about constructor,i know only eating, chating,
drinking, sleeping.

My friend just wrote my Name because he don't like to
propagate his name.

And my friend Name is Phani and anyone can contact him at:
phani121@yahoo.co.in, because he is a gem in programming
languages.

Is This Answer Correct ?    1 Yes 14 No

Post New Answer

More C Sharp Interview Questions

Does C# supports multi-dimensional arrays?

3 Answers   Microsoft,


What is the use of main method in c#?

0 Answers  


Why are mutable structs evil?

0 Answers  


Can we have a non static member function in a base class to be override in derived with static modifier?

7 Answers   Wipro,


What are delegates and why are they required?

0 Answers  






Which technology is best for desktop application?

0 Answers  


Enlist the different types of classes in c#?

0 Answers  


can you tell me what are the steps should follow to do delay signing.

1 Answers   HCL,


What are the boolean data types in c#?

0 Answers  


How do you set a class path?

0 Answers  


This is Kishore i am MCA graduate i have percentage less(52%) in my 10th still i completed .NET course any body tell me how to put fake experience with my BSC degree if you do not mind tell me some fake certificates giving consultencies names in Chennai,Bangalore

5 Answers  


Hi to all..I have to create an intranet application on C#.NET windows Application so please please let can you people help me as iam new in .NET and if u have any samples or website address from where i can get sample please let know.

0 Answers   ABB, TCS,


Categories