C++
destructors
A destructor is a special member function of a class that is executed whenever an object of it's class goes out of scope or whenever the delete expression is applied to a pointer to the object of that class.
Syntax:class A
{
int a;
~A() //destructor
{
a=0;
}
}
Example:include
using namespace std;
class Line
{
public:
void setLength( double len );
double getLength( void );
~Line(); // This is the destructor: declaration
};
Content
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 563 / 158776866. Delta: 0.00254 с