当前位置:   article > 正文

C++ 编译 invalid use of incomplete type_c++ invalid use of incomplete type

c++ invalid use of incomplete type

问题现象

class cat;

struct dog {
    cat *point;

    friend bool operator<(const dog &a, const dog &b) {
        cat *cat_a = a.point;
        cat *cat_b = b.point;
        return cat_a->age < cat_b->age;
    }
}

class cat {
public:
    int age;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

编译报错: invalid use of incomplete type

解决办法

报错的原因大概是cat向前声明,但是编译器在运行friend bool operator<(const dog &a, const dog &b) 时暂时还不知道cat的具体实现方式,所以无法获得变量age的值。
将cat的声明放在dog前面可以解决。

class cat;


class cat {
public:
    int age;
}


struct dog {
    cat *point;

    friend bool operator<(const dog &a, const dog &b) {
        cat *cat_a = a.point;
        cat *cat_b = b.point;
        return cat_a->age < cat_b->age;
    }
}


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/121216
推荐阅读
相关标签
  

闽ICP备14008679号