2

我有一个容器template <typename T> class A,它operator+需要为许多其他容器、表达式模板和文字类型重载U

我目前的策略是定义一个模板函数wrap,该函数封装了如何访问和定义各个元素

template <typename T, typename U>
auto operator+(Wrapped<T>&& lhs, Wrapped<U>&& rhs) -> decltype(...)
{
    ....
}

然而,下面的重载operator+是模棱两可的:

template <typename T, typename U>
auto operator+(const A<T>& lhs, U&& rhs) ->
    decltype(wrap(lhs) + wrap(std::forward<U>(rhs)))
{
    return wrap(lhs) + wrap(std::forward<U>(rhs));
}

template <typename T, typename U>
auto operator+(T&& lhs, const A<U>& rhs) ->
    decltype(wrap(std::forward<T>(lhs)) + wrap(rhs))
{
    return wrap(std::forward<T>(lhs)) + wrap(rhs);
}

我怎样才能最好地解决歧义?

4

1 回答 1

2

您需要提供一个比这两个参数都更好的重载模板,因为它是模棱两可的:

template<typename T>
auto operator+(const A<T> &lhs, const A<T> &rhs) -> ...;

template<typename T, typename U>
auto operator+(const A<T> &lhs, const A<U> &rhs) -> ...;
于 2012-08-22T11:51:43.663 回答