鱼C论坛

 找回密码
 立即注册
查看: 920|回复: 4

[已解决]C++的某个类在构造函数中,不能调用自己的成员函数吗

[复制链接]
发表于 2020-11-6 21:23:31 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 Ryan_Li 于 2020-11-6 21:26 编辑

C++的某个类在构造函数中,不能调用自己的成员函数吗

#include <iostream>
using namespace std;
class Person{
public:
        Person()
        {
                cout<<"Person默认构造函数的调用"<<endl;
        }
        Person(int age){
                cout<<"Person有参构造函数的调用"<<endl;
                m_Age = age;
        }
        Person(const Person & p){
                cout<<"Person拷贝构造函数的调用"<<endl;
                m_Age = p.getAge();                                         //这里报错!!!!!!!!!!!!!!!!!!!
        }
        ~Person()
        {
                cout<<"Person析构函数调用"<<endl;
        }
        int getAge(){
                return m_Age;
        }
private:
        int m_Age;
};

void test01(){
        Person p1(10);
        Person p2(p1);
       
        cout<<"p2 age:"<<p2.getAge()<<endl;
}
int main(){
        test01();
       
        system("pause");
        return 0;
}


代码如上,拷贝构造函数中 m_Age = p.getAge(); 这里报错
19        20        D:\学习\C++\49 类和对象 拷贝构造函数调用时机.cpp        [Error] passing 'const Person' as 'this' argument of 'int Person::getAge()' discards qualifiers [-fpermissive]
最佳答案
2020-11-6 21:32:03
这里出现错误的原因应该是 const 对象不能调用非const的方法吧。
所以,把getAge 后面加上const就好了
  int getAge() const {
                return m_Age;
  }
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-11-6 21:25:32 | 显示全部楼层
19        20        D:\学习\C++\49 类和对象 拷贝构造函数调用时机.cpp        [Error] passing 'const Person' as 'this' argument of 'int Person::getAge()' discards qualifiers [-fpermissive]
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-6 21:27:23 | 显示全部楼层
#include <iostream>
using namespace std;
class Person {
public:
        Person()
        {
                cout << "Person默认构造函数的调用" << endl;
        }
        Person(int age) {
                cout << "Person有参构造函数的调用" << endl;
                m_Age = age;
        }
        Person( Person& p) {        //这里参数类型不对,把const去掉,就可以转换了
                cout << "Person拷贝构造函数的调用" << endl;
                m_Age = p.getAge();                                         //这里报错!!!!!!!!!!!!!!!!!!!
        }
        ~Person()
        {
                cout << "Person析构函数调用" << endl;
        }
        int getAge() {
                return m_Age;
        }
private:
        int m_Age;
};

void test01() {
        Person p1(10);
        Person p2(p1);

        cout << "p2 age:" << p2.getAge() << endl;
}
int main() {
        test01();

        system("pause");
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-6 21:28:11 | 显示全部楼层
见第十三行改动及注释

满意的话记得设为最佳答案
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-6 21:32:03 | 显示全部楼层    本楼为最佳答案   
这里出现错误的原因应该是 const 对象不能调用非const的方法吧。
所以,把getAge 后面加上const就好了
  int getAge() const {
                return m_Age;
  }
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 17:40

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表