Is it possible to call constructor and destructor explicitly? Yes, it is possible to call special member functions explicitly by programmer . Following program calls constructor and destructor explicitly.23 Ağu 2020
Read moreWhen a destructor is called in C++ Mcq?
2. When a destructor is called? Explanation: The destructor is called just before the object go out of scope or just before its life ends . This is done to ensure that all the resources reserved for the object are used and at last, are made free for others.
Read moreAre destructors always called?
yes, when you delete something, the destructor is called . 2. When the destructor of the linked list is called, it’s objects’ destructor is called.10 Nis 2012
Read more