what is use to destroy an object? illustrate.
Answers were Sorted based on User's Feedback
Answer / rakhi
Object is distroyed when it goes out of the scope and it
can be distroy with its default destructor.
| Is This Answer Correct ? | 18 Yes | 0 No |
Answer / sujatha
object can be destroyed by using DESTRUCTORS
EX:
class A
{
int p;
public:
A(int x)
{
x=p;
cout<<"constructor is called memory is allocated to
variable x\n";
}
void show()
{
cout<<"x="<<x;
}
~A()
{
cout<<"destructor called and deaalocte memory occupied by
x\n";
}
};
void main()
{
A a1(10);
a1.show();
}
output
constructor called memory is allocated to variable x
x=10
destructor called and deaalocte memory occupied by x
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / sweety
An object is destroyed to make memory available for further
use by any other object. and this can bo done by using
destructors.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / safe
an object is destroyed to make memory free which is
allocated by object. it can automatically done by destructor
(default destructor)if we dont call a destructor.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / sumeet sharma
Simple a destructor function is used for it.
it takes the resources acquired by the object.
it is called when the object goes "out of scope"
| Is This Answer Correct ? | 1 Yes | 2 No |
What is OOPS and How it is different from Procedural Programming ?
23 Answers HP, Infosys, Thyrocare,
What is oop in simple words?
can main method be overloaded...??? How..????
What are benefits of oop?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
What polymorphism means?
What is the difference between pass by value,pass by pointer,pass by reference in the catch block in the exception handling in c++
1. Define a class.
What is object in oops?
What is the main feature of oop?
What is static in oop?
Tell me the scenario,Where we can use interfaces or Abstract class.And What is the difference between interfaces and abstract class?