报错no matching function for call to std::bind
时间: 2023-05-18 11:05:39 浏览: 287
no matching function for call to function (解决方案).md
这个错误通常是因为您使用了错误的参数类型或数量来调用std::bind()函数。std::bind()函数的参数应该是一个可调用对象和一些参数,用于绑定该可调用对象的参数。如果您的参数不匹配,编译器将无法找到匹配的函数,并报告“no matching function for call to std::bind”错误。
要解决这个问题,您应该检查您的std::bind()函数调用,并确保它们使用正确的参数类型和数量。如果您仍然无法解决问题,请考虑使用其他函数或方法来实现您的需求。
阅读全文