库中调用没有匹配函数

时间:2012-06-09 00:00:00

标签: c++

我在动态库中有一个带有public函数的类:

void setActiveAnimation(std::shared_ptr<MaJR::Animation> anim);

当我尝试这样称呼它时:

    MaJR::Actor actor;
    actor.setActiveAnimation(idleAnimation);

我得到以下内容:

/home/mike/NixCraft/main.cpp||In function 'int main()':|
/home/mike/NixCraft/main.cpp|12|error: no matching function for call to 'MaJR::Actor::setActiveAnimation(MaJR::Animation&)'|
/home/mike/NixCraft/main.cpp|12|note: candidate is:|
/usr/include/MaJR/Actor.hpp|16|note: void MaJR::Actor::setActiveAnimation(std::shared_ptr<MaJR::Animation>)|
/usr/include/MaJR/Actor.hpp|16|note:   no known conversion for argument 1 from 'MaJR::Animation' to 'std::shared_ptr<MaJR::Animation>'|
||=== Build finished: 4 errors, 0 warnings ===|

我该怎么办?

2 个答案:

答案 0 :(得分:5)

错误明确指出您尝试通过引用MaJR::Animation而不是std::shared_ptr<MaJR::Animation>来调用该函数。每当你声明idleAnimation时,你应该改为:

std::shared_ptr<MaJR::Animation> idleAnimation( new MaJR::Animation() );

或更好:

std::shared_ptr<MaJR::Animation> idleAnimation = std::make_shared<MaJR::Animation>();

答案 1 :(得分:1)

我没看到你如何定义“idleAnimation”,但我猜它不是指针,而是对实际对象的引用。 setActiveAnimation()接受一个指针,所以相应地调整你的代码。