Boost变体:根据其类型获取对变体的引用



假设存在

boost::variant<int, std::string> v;

如何获得std::string &类型的引用x,可以像

那样使用
x = "abc";

和将具有等同于

的行为
v = "abc";

?

std::string& x = boost::get<std::string>(v);

相关内容

  • 没有找到相关文章

最新更新