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 |
how to find the correct email address format by using the programe?
What are the important components of cohesion?
Write an operator overloading program to Overload ‘>’ operator so as to find greater among two instances of the class.
What is object in oops?
What are the advantanges of modularity
Can we have a private constructor ?
12 Answers HSBC, Ness Technologies, TCS, Wipro,
what is function overloading..?
The IT giant Tirnop has recently crossed a head count of 150000 and earnings of $7 billion. As one of the forerunners in the technology front, Tirnop continues to lead the way in products and services in India. At Tirnop, all programmers are equal in every respect. They receive identical salaries and also write code at the same rate. Suppose 14 such programmers take 14 minutes to write 14 lines of code in total. How long will in take 5 programmers to write 5 lines of code in total ?
Get me an image implementation program.
What is the advantage of oop over procedural language?
How to execute business logic for only once ..?even though user clicks submit button multiple times by mistake..? (i disabled JavaScript)
What do we mean by a hidden argument in C++?