构造函数与其他类的函数不同,构造函数在创建对象时被调用,构造函数与类型相同,但没有返回值。
/* Human.h */
#include <string>
class Human {
private:
std::string name;
unsigned int age;
public:
/*构造函数与类同名,在创建对象时被调用,当没有定义构造函数时,系统将调用一个默认的构造函数
* 析构函数,在对象被销毁时调用
*/
Human();
~Human(); //
void setName(std::string str);
void setAge(unsigned int num);
void getName();
void getAge();
};
/*Human.cpp*/
#include <iostream>
#include "Human.h"
Human::Human()
{
age = 0; //构造函数可初始化类的数据,防止生成垃圾值
std::cout << "1 call Human()" << std::endl;
}
Human::~Human()
{
std::cout << "2 call ~Human() the name is" << name << std::endl;
}