gpt4 book ai didi

c++ - 使用自定义类提升变体

转载 作者:搜寻专家 更新时间:2023-10-31 01:11:10 28 4
gpt4 key购买 nike

我正在尝试使用自定义类的 boost-variant。我知道访问类内容的安全方法是使用 boost::static_visitor。你知道为什么下面的代码不能编译吗? boost::static_visitor 的签名/声明是否有任何要求才能使用?

我发现了这个问题 Why can't I visit this custom type with boost::variant?但我没明白。

问候

AFG

#include <iostream>
#include <algorithm>
#include <boost/variant.hpp>

struct CA{};

struct ca_visitor : public boost::static_visitor<CA>
{
const CA& operator()(const CA& obj ) const { return obj;}
};

struct CB{};

struct cb_visitor : public boost::static_visitor<CB>
{
const CB& operator()(const CB& obj) const { return obj;}
};

int main(){
typedef boost::variant<
CA
,CB > v_type;

v_type v;
const CA& a = boost::apply_visitor( ca_visitor(), v );
}

最佳答案

首先,boost::static_visitor<>的模板参数应指定调用运算符返回的类型。在你的情况下,ca_visitor的调用运营商返回 CA const& , 不是 CA .

但这还不是最大的问题。最大的问题是你似乎误解了 variant<>static_visitor<>应该可以。

一个 boost::variant<> 的想法是它可以保存您在模板参数列表中指定的任何 类型的值。您不知道那个类型是什么,因此您为访问者提供了几个重载的调用运算符来处理每种可能的情况。

因此,当您提供访问者时,您需要确保它具有 operator() 的所有必要重载。接受你的类型 variant能把持住。如果您不这样做,Boost.Variant 会导致生成编译错误(这对您有好处,因为您忘记了处理某些情况)。

这就是您面临的问题:您的访问者没有接受类型为 CB 的对象的调用运算符(operator).

这是一个正确使用 boost::variant<> 的例子和 static_visitor<> :

#include <iostream>
#include <algorithm>
#include <boost/variant.hpp>

struct A{};
struct B{};

struct my_visitor : public boost::static_visitor<bool>
// ^^^^
// This must be the same as the
// return type of your call
// operators
{
bool operator() (const A& obj ) const { return true; }
bool operator() (const B& obj) const { return false; }
};

int main()
{
A a;
B b;
my_visitor mv;

typedef boost::variant<A, B> v_type;

v_type v = a;

bool res = v.apply_visitor(mv);
std::cout << res; // Should print 1

v = b;

res = v.apply_visitor(mv);
std::cout << res; // Should print 0
}

关于c++ - 使用自定义类提升变体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15186527/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com