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 |
explain defference between structure and class with example
What are the benefits of oop?
write string class as your own class in java without using any built-in function
When is an object created and what is its lifetime?
Give two or more real cenario of virtual function and vertual object
Why do pointers exist?
some one give d clear explanation for polymorphism
define oops with class and object
Have you ever interfaced with a database?
what is difference between objects and function
Why we are use # in begning of programme of c++.
How is data security provided in Object Oriented languages? ?