C++ 中类的析构函数

来源:互联网 发布:java 启动参数 编辑:程序博客网 时间:2024/05/23 11:48
#include <iostream>
#include <cmath>
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <cstdlib>
using namespace std;


class Line
{
public:
    void setLength( double len );
    double getLength( void );
    ~Line();
private:
    double length;
};


Line::~Line(void)
{
    cout << "Object is being deleted" << endl;
}


void Line::setLength( double len )
{
    length = len;
}


double Line::getLength( void )
{
    return length;
}


int main( )
{
    Line line;
    line.setLength(6.0);
    cout << "Length of line : " << line.getLength() <<endl;
    return 0;
}
原创粉丝点击