which are the 4 members functions in c++ objects that can
either be declared explicitly by programmer or implementation
if nt available.
Answer Posted / dharmendra
default constructor , copy constructor & Destructor
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How long to learn object oriented programming?
How to use CMutex, CSemaphore in VC++ MFC
Can we have inheritance without polymorphism?
What are the benefits of polymorphism?
How do you achieve runtime polymorphism?
What is meant by oops concept?
What is object and class in oops?
Can bst contain duplicates?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
what are the ways in which a constructors can be called?
Get me a number puzzle game-program
What is class and example?
Is this job good for future? can do this job post grduate student?
What makes a language oop?
What is encapsulation in simple terms?