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 |
Write a program in C/C++ to implement reader- writer problem
What is the underlying datastructure of map?
What are the different types of stl containers?
What is the stl, standard template library?
sir please send me bpcl previous question papers
0 Answers BPCL Bharat Petroleum,
Explain when u will use Observer pattern and how u will implement in c++ .
draw a flowchart that accepts two numbers and checks if the first is divisible by the second.
if x<>=z then statement end what is the cyclomatic complexity
Is there any error below, its a code to delete all entires from a map #include <map> #include iostream.h int main() { int i =0; map <int, char> TestMap; while(i<3) { TesMap.insert(TestMap::value_type(i,Test)); i++; } typedef map<int, char> :: iterator mapIter =TestMap.begin(); if(mapIter!=TestMap.end()) { TestMap.erase(mapItrer); ++mapIter; } return 0; }
what's the difference between abstract class and concreate class? what's the meaning of standard template library(STL)?
What does stl stand for in basketball?
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?"