我在以下代码中目睹了我不理解的行为。关键是,如果我声明第二个重载operator()
类似于以下任一:
bool operator()(T other) const
bool operator()(const T &other) const
程序的输出是:
细绳
但是,如果我使用以下声明:
bool operator()(T &other) const
输出将是:
其他类型
有人可以解释为什么operator()(const string &other)
在后一种情况下不被调用吗?
#include "boost/variant/variant.hpp"
#include "boost/variant/apply_visitor.hpp"
using namespace std;
using namespace boost;
typedef variant<string, int> MyVariant;
class StartsWith
: public boost::static_visitor<bool>
{
public:
string mPrefix;
bool operator()(const string &other) const
{
cout << "string" << endl;
return other.compare(0, mPrefix.length(), mPrefix) == 0;
}
template<typename T>
bool operator()(T &other) const
{
cout << "other type" << endl;
return false;
}
StartsWith(string const& prefix):mPrefix(prefix){}
};
int main(int argc, char **argv)
{
MyVariant v(string("123456"));
apply_visitor(StartsWith("123"), v);
return 0;
}