What is Constructor
Answers were Sorted based on User's Feedback
Answer / biswajit rout
Constructor is a special type of member function which
never returns any value.It is mainlly used for
initilazation of data member(s).It can only invoked by the
creation of the object of the respective class.constructor
can very well use AccessSpecifier.
constructor can very well overloaded but it can not be
overridden.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / dipankar gain
constructor is just like a method(a function in C/C++) which
is called before the object of the class is created.
Generally you dont need to give the constructor in the class
definition but if you want to do something like initializing
variables, starting a connection, connect to the database,
then you should use the constructors.
If you dont include the constructor in your class, then the
java compiler puts it for you, its called the default
constructor.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ada
Constructor creates an object and initializes it. It also
creates vtable for virtual functions. It's different from
other methods in a class.
| Is This Answer Correct ? | 17 Yes | 22 No |
Answer / raj
contructor is construct which is construct
something................
| Is This Answer Correct ? | 6 Yes | 16 No |
what is template and type convertion
what's the difference between abstract class and concreate class? what's the meaning of standard template library(STL)?
wap in c++ which accept a integer array and its size as argument and replaces element having even values with its half and element having odd values with twice its value
How do you convert stl to steps?
What two types of containers does the stl provide?
Do you like to Submit Questions in Bulk under Same Category?? Then use our Bulk ListerDo you like to Submit Questions in Bulk under Same Category?? Then use our Bulk Lister
write a program to search and display the position of an element in a single-dimentional array using function.
How the STL's are implemented, What the difference between templates and STL?
What does stl mean in slang?
How does an stl file work?
Assume I have a linked list contains all of the alphabets from "A" to "Z?" I want to find the letter "Q" in the list, how does you perform the search to find the "Q?"
help me i need a c++ program which takes sequesnce of characters and outputed sequence of their token taypes, work same compiler in lexical analysis phase