可以用里面写const
函数吗?apply_visitor
例如,此代码编译没有错误:
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <boost/variant.hpp>
using namespace std;
typedef boost::variant<int,string> vTypeVariants;
struct vType_toN : boost::static_visitor<int>
{
int operator()(int& i) const {
return i;
}
int operator()(const string& str) const{
return str.length();
}
};
class vType{
public:
vType(const int& src) : data(src){}
vType(const std::string& src) : data(src){}
int getLength(){
return boost::apply_visitor(vType_toN(),data);
}
private:
vTypeVariants data;
};
int main(int argc, char ** argv)
{
vType x = string("2");
printf("L=%d",x.getLength());
return(0);
}
除非您将 const 添加到 getLength():
int getLength() const{
return boost::apply_visitor(vType_toN(),data);
}
在这种情况下,会出现一个带有大量描述(2 页)的错误,抱怨初始化第一个参数的问题。
所以,问题是:如何在 const 函数中使用 apply_visitor?