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

What is the difference between structure and class in c#?

0 Answers  


what is software?

4 Answers   Cadsys, Zefer,


Why static constructor is parameterless in c#?

0 Answers  


why do we use Overloading, Overriding, Boxing, Unboxing, and what is the use of these ?

3 Answers   eXensys,


How can you use abstract class and interface?

0 Answers   Accenture,






Is learning c# hard?

0 Answers  


Why is it a bad idea to throw your own exceptions?

1 Answers   Visual Soft,


What are managed providers?

0 Answers   UGC Corporation,


Why we use extension method in c#?

0 Answers  


How do switch statements work?

0 Answers  


What is a generic c#?

0 Answers  


How can you overload a method?

3 Answers  


Categories