Explain constructor.
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
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 |
Can we store different data types in arraylist in c#?
What is better C# or VB.NET?
Can an interface inherit class/abstract class.
What is thread safe in c#?
What is executenonquery c#?
What do you mean by saying a "struct is a value type"?
what is main function of alternate teamplate of datalist?
what are implementation inheritance and interface inheritance?
How does a while loop work?
Is comparator a functional interface?
What is Global Assembly Cache (GAC) and what is the purpose of it? (How to make an assembly to public? Steps) How more than one version of an assembly can keep in same place?
What exactly happens when we debug and build the program?