what is use to destroy an object? illustrate.

Answers were Sorted based on User's Feedback



what is use to destroy an object? illustrate...

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

what is use to destroy an object? illustrate...

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

what is use to destroy an object? illustrate...

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

what is use to destroy an object? illustrate...

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

what is use to destroy an object? illustrate...

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

Post New Answer

More OOPS Interview Questions

Why do we use class in oops?

0 Answers  


what is the usage of clas templates

5 Answers  


What are the three parts of a simple empty class?

0 Answers  


How is the using() pattern useful? What is IDisposable? How does it support deterministic finalization?

1 Answers   IntraLogic,


A file pointer always contains the __________ of the file

5 Answers  






what is the definition of incapsulation

2 Answers  


What is virtual class and friend class?

5 Answers   IBS, Intel, Wipro,


What is class encapsulation?

0 Answers  


how do u initialize the constant variables

5 Answers   IBM, Siemens,


Definition of Object Oriented Programming in single line?

33 Answers   Impact Systems, Q3 Technologies, TCS,


What is difference between polymorphism and inheritance?

0 Answers  


What is abstraction in oop?

0 Answers  


Categories