在 C 中,可以有名称相同但参数不同的函数,称为函数超载。当将重载函数作为参数传递给 std::for_each() 等函数时,这可能会产生歧义。
问题:
考虑以下代码片段:
class A { void f(char c); void f(int i); void scan(const std::string& s) { std::for_each(s.begin(), s.end(), f); } };
在此示例中,scan() 方法尝试将重载函数 f() 传递给std::for_each()。但是,编译器无法自动确定要使用 f() 的哪个重载。
解决方案:
要指定所需的重载,可以使用 static_cast( ) 或 mem_fun() 函数指针。
方法一: Static_Cast()
// Uses the void f(char c); overload std::for_each(s.begin(), s.end(), static_cast<void (*)(char)>(&f)); // Uses the void f(int i); overload std::for_each(s.begin(), s.end(), static_cast<void (*)(int)>(&f));
通过将函数指针强制转换为特定类型,可以强制编译器根据给定的函数签名解析重载。
方法 2:Mem_Fun()
如果 f() 是成员函数,则可以使用 mem_fun() 函数指针:
std::for_each(s.begin(), s.end(), std::mem_fun(&A::f));
这种方法需要您指定类名和重载,这可能更冗长,但也更灵活。
以上是如何解决 std::for_each() 中重载函数的歧义?的详细内容。更多信息请关注PHP中文网其他相关文章!