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

Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.

1 Answers  


what is the usage of clas templates

5 Answers  


write a program to print * * * * * *

2 Answers  


What is protected in oop?

0 Answers  


Does c++ support multilevel and multiple inheritance?

9 Answers   IBS, Wipro,






What are the components of marker interface?

0 Answers  


Example for 4 pillar of oops like, Inheritance,Poly,Abstraction,Encabsulation ?

3 Answers  


What is overloading in oops?

0 Answers  


why we are declare the function in the abstract class even though we are declaring it in Derived class?

1 Answers   TCS,


what is object slicing?

9 Answers   L&T, Wipro,


write a program that takes input in digits and display the result in words from 1 to 1000

0 Answers   Wipro,


What is a unary operator?

5 Answers  


Categories