码迷,mamicode.com
首页 > 其他好文 > 详细

类的构造函数、析构函数

时间:2017-04-05 21:49:34      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:include   相同   清空   重要   student   数据   blog   cout   析构   

#include <bits/stdc++.h>
using namespace std;
//类的定义
class student
{
public:
    student(string na="mark",string i="54163214"){ 
     //构造函数 没有类型,名字和类名相同,对象声明时自动调用 作用:初始化数据
        name=na;id=i;
        cout<<"it‘s created"<<endl;
    }
    ~student(){                        
    //析构函数  没有类型,类名前加一个~ ,对象生命期结束时自动调用 作用: 清理空间(动态数据必须在这清空)
        cout<<"it‘s done"<<endl;
    }
    void output_inf(){
        cout<<"his name is "<<name<<" and his id is "<<id<<endl;
    }
private :
    string name;
    string id;

};

int main()
{
    student a;
    a.output_inf();
    return 0;
}
//here is the output
//it‘s created
//his name is mark and his id is 54163214
//it‘s done
  

  

  关于类,还有一个重要的知识点:名字空间未说明

and more。。

类的构造函数、析构函数

标签:include   相同   清空   重要   student   数据   blog   cout   析构   

原文地址:http://www.cnblogs.com/star-and-me/p/6670518.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!