2

这里的最后一行:

typedef boost::variant<std::vector<int>, std::vector<float>> C; 

class A: public boost::static_visitor<>
{
public:
    void operator()(const std::vector<int>& value) const
    {
    }

    void operator()(const std::vector<float>& value) const
    {
    }
};

C container(std::vector<float>());
boost::apply_visitor(A(), container );

给我错误:

c:\boost_1_49_0\boost\variant\detail\apply_visitor_unary.hpp(60): error C2228: left of '.apply_visitor' must have class/struct/union
1>          type is 'boost::variant<T0_,T1> (__cdecl &)'
1>          with
1>          [
1>              T0_=std::vector<int>,
1>              T1=std::vector<float>
1>          ]
1>          c:\visual studio 2010\projects\db\xxx\main.cpp(255) : see reference to function template instantiation 'void boost::apply_visitor<A,C(std::vector<_Ty> (__cdecl *)(void))>(Visitor &,Visitable (__cdecl &))' being compiled
1>          with
1>          [
1>              _Ty=float,
1>              Visitor=A,
1>              Visitable=C (std::vector<float> (__cdecl *)(void))

这里有什么问题?你认为有一个容器类型 C 有这样的定义吗?

我在整个代码中使用以下类型:

typedef boost::variant<int, float, ...> Type; 

你认为使用这个容器定义会更明智吗:

typedef std::vector<Type> C; // mixed container

为什么?

4

1 回答 1

5

你的问题是这个

C container(std::vector<float>());

是一个函数声明(这是最令人头疼的 parse)(一个container将函数返回std::vector<float>作为其唯一参数并返回的函数C)。简单修复:额外的括号:

C container((std::vector<float>()));

您在其中使用容器的事实variant与问题无关。也会发生同样的情况boost::variant<int, float>

于 2012-10-05T13:20:18.973 回答