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 |
There are 2 empty jars of 5 and 3 liters capacity. And a river is flowing besides. I want to measure 4 liters of wanter using these 2 jars. How do you do this?
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
Define a class to represent a bank account. Include the following members: Data Members: Name of the Depositor Account Number Type of Account Balance amount in the account Member Functions: To assign the initial values. To deposit an account. To withdraw an amount after checking the balance. Write a C++ main program to display account number, name and balance.
class type to basic type conversion
can inline function declare in private part of class?
What is virtual function?where and when is it used?
Get me an image implementation program.
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
i ahve v low % in 12th n BSC which is aroun 50 coz science was imposed on me......nw m doin MCA n my aggregate in above 74%,what shud i say if asked about low previous percentage??????
4. What do you mean by a prototype? Define analysis prototype
What do you mean by pure virtual functions?
What are the access specifiers avaible in c++?