首页 > 代码库 > 类的构造函数、析构函数
类的构造函数、析构函数
#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。。
类的构造函数、析构函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。