gpt4 book ai didi

c++ - boost:bind 和两个具有相同名称和参数的方法

转载 作者:搜寻专家 更新时间:2023-10-31 01:47:30 25 4
gpt4 key购买 nike

我有一个类有两个方法

bool Syntax::removeTarget( CommandParam &params );

bool Syntax::removeTarget( const std::string & targetId );

如何绑定(bind)第二种方法? boost::bind(&Syntax::removeTarget, this, _1) 不起作用。

最佳答案

要消除重载的歧义,您必须将它们强制转换(或以其他方式强制转换)为正确的类型。这应该有效:

boost::bind(static_cast<bool (Syntax::*)(const std::string&)>(&Syntax::removeTarget), this, _1);

关于c++ - boost:bind 和两个具有相同名称和参数的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19131703/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com