iOS "vtable for XXX", referenced from:

问题描述:

"vtable for XXX", referenced from:

NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.


原因:

1:是不是有纯虚函数没有实现

2:iOS C++中,纯虚函数中,要求非纯虚函数都必须得实现,检查是否有没有实现的虚函数.

错误代码如下:

class Foo {
    virtual void f();
    virtual void s() = 0;
};

class Rice {
    Rice(){};
    ~Rice(){};
    virtual void f(){};
    virtual void s(){};
}
int main(int argc, char **argv)
{
  Rice rice;

  return(0);
}

修改:

class Foo {
    virtual void f() = 0;
    virtual void s() = 0;
};

或:

class Foo {
    virtual void f(){};
    virtual void s() = 0;
};

NOTE:
The ISO C++ Standard specifies that all virtual methods of a class that are not pure-virtual must be defined, but does not require any diagnostic for violations of this rule [class.virtual]/8. Based on this assumption, GCC will only emit the implicitly defined constructors, the assignment operator, the destructor and the virtual table of a class in the translation unit that defines its first such non-inline method.

Therefore, if you fail to define this particular method, the linker may complain about the lack of definitions for apparently unrelated symbols. Unfortunately, in order to improve this error message, it might be necessary to change the linker, and this can't always be done.


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值