2

例如,给定以下代码

class A {
 public:
    double operator()(double foo) {
        return foo;
    }
};

class B {
 public:
    double operator()(double foo, int bar) {
        return foo + bar;
    }
};

我想编写两个版本的fun,一个适用于具有 A 签名的对象,另一个适用于具有 B 签名的对象:

template <typename F, typename T>
T fun(F f, T t) {
    return f(t);
}

template <typename F, typename T>
T fun(F f, T t) {
    return f(t, 2);
}

我期待这种行为

A a();
B b();
fun(a, 4.0);  // I want this to be 4.0
fun(b, 4.0);  // I want this to be 6.0

当然,前面的例子在编译时会抛出一个模板重定义错误。

如果 B 是一个函数,我可以重写fun为这样的:

template <typename T>
T fun(T (f)(T, int), T t) {
    return f(t, 2);
}

但我想fun同时使用函数和可调用对象。使用std::bind或者std::function可能会解决问题,但我使用的是 C++98,而这些是在 C++11 中引入的。

4

1 回答 1

1

这是从这个问题修改的解决方案,以适应返回 void 的功能。解决方案很简单,使用sizeof(possibly-void-expression, 1).

#include <cstdlib>
#include <iostream>

// like std::declval in c++11
template <typename T>
T& decl_val();

// just use the type and ignore the value. 
template <std::size_t, typename T = void> 
struct ignore_value {typedef T type;};

// This is basic expression-based SFINAE.
// If the expression inside sizeof() is invalid, substitution fails.
// The expression, when valid, is always of type int, 
// thanks to the comma operator.
// The expression is valid if an F is callable with specified parameters. 
template <class F>
typename ignore_value<sizeof(decl_val<F>()(1),1), void>::type
call(F f)
{
    f(1);
}

// Same, with different parameters passed to an F.
template <class F>
typename ignore_value<sizeof(decl_val<F>()(1,1),1), void>::type
call(F f)
{
    f(1, 2);
}

void func1(int) { std::cout << "func1\n"; }
void func2(int,int) { std::cout << "func2\n"; }

struct A
{
    void operator()(int){ std::cout << "A\n"; }
};

struct B
{
    void operator()(int, int){ std::cout << "B\n"; }
};

struct C
{
    void operator()(int){ std::cout << "C1\n"; }
    void operator()(int, int){ std::cout << "C2\n"; }
};

int main()
{
    call(func1);
    call(func2);
    call(A());
    call(B());
    // call(C()); // ambiguous
}

在 c++98 模式下使用 gcc 和 clang 检查。

于 2018-04-10T03:06:44.293 回答