boost :: variant和函数重载决策

时间:2014-07-16 21:44:05

标签: c++ boost

以下代码无法编译:

#include <boost/variant.hpp>

class A {};
class B {};
class C {};
class D {};

using v1 = boost::variant<A, B>;
using v2 = boost::variant<C, D>;

int f(v1 const&) {
    return 0;
}
int f(v2 const&) {
    return 1;
}
int main() {
    return f(A{});
}
gcc和clang都抱怨道:

test1.cpp: In function ‘int main()’:
test1.cpp:18:17: error: call of overloaded ‘f(A)’ is ambiguous
     return f(A{});
                 ^
test1.cpp:18:17: note: candidates are:
test1.cpp:11:5: note: int f(const v1&)
 int f(v1 const&) {
     ^
test1.cpp:14:5: note: int f(const v2&)
 int f(v2 const&) {

鉴于无法从v2实例构造A对象,为什么编译器在重载解析期间为两个函数赋予相同的优先级?

2 个答案:

答案 0 :(得分:5)

问题是构造函数

template<typename T>
variant(const T&)
boost::variant

。下面的代码在没有所有魔法的情况下重现了这个问题:

struct C {};

struct A {
  A(const C&) {}

  template<typename T>
  A(const T&) {}
};
struct B {
  template<typename T>
  B(const T&) {}
};

int f(const A&) {
    return 0;
}
int f(const B&) {
    return 1;
}
int main() {
  return f(C{});
}

我认为variant构造函数只应在启用时启用 参数实际上可以转换为参数,你可能想要 将此提升为一个错误。

答案 1 :(得分:3)

一种实用的方法,如果没有使用适当的SFINAE进行显式转换来修复转换(我不认为它可以在Boost Variant库之外优雅地完成),可能是这样的:

查看 Live On Coliru

#include <boost/variant.hpp>

class A {};
class B {};
class C {};
class D {};

using v1 = boost::variant<A, B>;
using v2 = boost::variant<C, D>;

namespace detail {
    struct F : boost::static_visitor<int> {
        template <typename... T>
        int operator()(boost::variant<T...> const& v) const {
            return boost::apply_visitor(*this, v);
        }

        int operator()(A) const { return 0; }
        int operator()(B) const { return 0; }
        int operator()(C) const { return 1; }
        int operator()(D) const { return 1; }
    } _f;
}

template <typename T>
int f(T const& t) {
    return detail::F()(t);
}

int main() {
    std::cout <<  f(A{})   << "\n";
    std::cout <<  f(B{})   << "\n";
    std::cout <<  f(C{})   << "\n";
    std::cout <<  f(D{})   << "\n";
    std::cout <<  f(v1{})  << "\n";
    std::cout <<  f(v2{})  << "\n";
}

打印

0
0
1
1
0
1

假设f(T)始终为同一T返回相同的值,即使它是多个变体的成员