C++学习小记 const成员函数

#include <iostream>
using namespace std;


class Person{
private:
    string name;
    bool gender;
    int age;
public:
    Person(string name_ ,bool gender_, int age_){
        name = name_;
        gender = gender_;
        age = age_;
        cout << name << "出生" <<endl;
    }
    ~Person(){
        cout<< name << "挂了" << endl;
    }
    
    Person(){
        cout << "Person()" << endl;
    }

    Person(string name_){
        name = name_;
    }

    Person(int age_){
        age = age_;
    }

    /*拷贝构造函数*/
    Person(const Person& that){
        name = that.name;
        gender = that.gender;
        age = that.age;
        cout << "copy" << endl;
    }
    void show(){
        cout << "My name is " << name << endl;
        cout << "I is " << (gender ? "man" : "women") << endl;
        cout << "My age is " << age << endl;

    }

    string getName()const{//加const代表代码实现中没有改变成员
        //只调用const成员函数
        //如setName();则错误
        cout << "getName()const" << endl;
        return name;
    }

    string getName(){//有无const也可以重载函数
    	cout << "getName()" << endl;
        return name;
    }
    void setName(string Name)
    {
        name = Name;
    }
};

int main(int argc, const char *argv[])
{
    const Person ps("tom",true,18);//ps只能使用const成员函数
    cout << "name :" << ps.getName() << endl;//这里调用getName()const

    Person ps2("tony",true,22);//ps2优先使用非const成员函数
    cout << "name :" << ps1.getName() << endl;
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值