使用apply_visitor从变量的向量中过滤

H'H*_*H'H 3 c++ boost boost-variant apply-visitor

昨天我问了这个问题并且"juanchopanza"回答了我的问题,但不幸的是我无法抓住其中一个有界类型.由于使用"访客"更加强大,我也想知道有人可以使用"访客"给我一个解决方案吗?

我正在寻找过滤boost变体矢量的最佳方法,该变量已定义如下:

 boost::variant<T1*, T2, T3> Var;
 std::vector<Var> Vec;
Run Code Online (Sandbox Code Playgroud)

当我调用这个向量时,什么是仅过滤T2有界类型并插入新向量的最佳方法?或者换句话说,我想要这样的东西

std::vector<T2> T2Vec =...(如何使用apply_visitor从Vec中过滤它)...

再次感谢!

编辑:@ ForEveR的闷闷不乐:

template<typename T>
struct T_visitor : public boost::static_visitor<>
{
   T_visitor(std::vector<T>& v) : vec(v) {}
   template<typename U>
   void operator () (const U&) {}
   void operator () (const T& value)
   {
      vec.push_back(value);
   }
private:
   std::vector<T>& vec;
};
Run Code Online (Sandbox Code Playgroud)

和:

  std::vector<T1> t1vec;
  T_visitor<T1> vis(t1vec);
  std::for_each(vec.begin(), vec.end(), boost::apply_visitor(vis));
Run Code Online (Sandbox Code Playgroud)

你能告诉我这里有什么问题吗?

For*_*veR 7

struct T2_visitor : public boost::static_visitor<>
{
   T2_visitor(std::vector<T2>& v) : vec(v) {}
   template<typename T>
   void operator () (const T&) {}
   void operator () (const T2& value)
   {
      vec.push_back(value);
   }
private:
   std::vector<T2>& vec;
};

std::vector<T2> T2Vec;
T2_visitor vis(T2Vec);
std::for_each(Vec.begin(), Vec.end(), boost::apply_visitor(vis));
Run Code Online (Sandbox Code Playgroud)