是否可以在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?
答案 0 :(得分:1)
发现自己。 在static_visitor类操作符定义中,在int之前忘记了const。 也许有人会觉得这很有用,因为要找到它并不容易(我的原始课程要大得多)。