【问题标题】:Ambiguous operator>> using Boost 1.59 lexical_cast on Mac OSX歧义运算符>> 在 Mac OSX 上使用 Boost 1.59 lexical_cast
【发布时间】:2015-09-04 15:39:18
【问题描述】:

将 boost::lexical cast 与具有重载输入/输出运算符的自定义类一起使用时,在 Max OSX 上编译时,我得到一个模棱两可的重载运算符>>。在这种情况下,Boost 1.59 是使用 Macports 安装的。

下面是一个独立的示例,说明了错误和所需的结果:

#include <iostream>
#include <string>
#include <sstream>
#ifdef __DEMO__
#include <boost/lexical_cast.hpp>
#endif

using namespace std;

enum BoolYN_ENUM { FALSE_YN, TRUE_YN, UNSET_YN};

class BoolYN{
public:
  BoolYN() : _dat(UNSET_YN){}
  BoolYN(const BoolYN& o) : _dat(o._dat) {}

  BoolYN& operator=(const BoolYN_ENUM& val){ _dat = val; return *this;}
  BoolYN& operator=(const BoolYN& o){ _dat = o._dat; return *this;}

  operator const char*() const{
    switch(_dat){
    case FALSE_YN:
      return "F";
    case TRUE_YN:
      return "T";
    default:
      return "U";
    }
  }

  operator int() const {return _dat;}

private:
  BoolYN_ENUM _dat;
};

istream& operator>>(istream& is, BoolYN& obj){
  string token;
  is >> token;
  if(token.size() > 0){
    char s = token[0];
    if(s == 'Y' || s == 'y'){
      obj = TRUE_YN;
    } else if (s == 'N' || s == 'n') {
      obj = FALSE_YN;
    } else {
      obj = UNSET_YN;
    }
  } else {
    obj = UNSET_YN;
  }
  return is;
}

ostream& operator<<(ostream& os, BoolYN& obj){
  os << (const char*) obj;
  return os;
}

int main(int argc, char** argv){

  for(int i=1; i<argc; i++){
    string argi(argv[i]);
#ifndef __DEMO__
    stringstream ss(argi);
    BoolYN boolval;
    ss >> boolval;
#else
    BoolYN boolval = boost::lexical_cast<BoolYN>(argi);
#endif
    cout << "Argument " << i << ": " << boolval << endl;
  }
  return 0;
}

为了说明所需的行为,只需使用适当的包含路径进行编译。参数在命令行中给出,并使用重载的 > 运算符进行适当的解析。

$ g++ main.cpp
$ a.out Yes No IDK
Argument 1: T
Argument 2: F
Argument 3: U

要改为使用 boost::lexical_cast,请使用“-D__DEMO__”进行编译,它会给出以下错误:

In file included from main.cpp:6:
In file included from /opt/local/include/boost/lexical_cast.hpp:32:
In file included from /opt/local/include/boost/lexical_cast/try_lexical_convert.hpp:35:
In file included from /opt/local/include/boost/lexical_cast/detail/converter_lexical.hpp:39:
In file included from /opt/local/include/boost/type_traits/has_right_shift.hpp:43:
/opt/local/include/boost/type_traits/detail/has_binary_operator.hpp:158:70: error: use of overloaded operator '>>' is ambiguous (with operand types 'std::__1::basic_istream<wchar_t>' and 'BoolYN')
   BOOST_STATIC_CONSTANT(bool, value = (sizeof(s_check(((make<Lhs>() BOOST_TT_TRAIT_OP make<Rhs>()),make<has_operator>())))==sizeof(::boost::type_traits::yes_type)));

... (very long error msg. truncated) ...

代码在 Linux Boost v. 1.51 上使用和不使用“-D__DEMO__”都有效。任何想法/提示将不胜感激!

【问题讨论】:

    标签: c++ macos boost lexical-cast


    【解决方案1】:

    我没有你的环境来精确分析。然而,看起来有一个库候选 operator&gt;&gt; 与 lexical_cast 实现传递的第一个参数有更好的匹配,但(自然)BoolYN 参数的匹配更差。请特别注意诊断中的操作数类型是basic_stream&lt;wchar_t&gt;,而您的operator&gt;&gt; 采用istream(我相信basic_istream&lt;char&gt;)。因此,也许您可​​以通过将 operator&gt;&gt; 设为模板并将流的字符类型作为模板参数来解决此问题。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2010-09-27
      • 2015-01-15
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-08-28
      • 2021-11-14
      • 2021-05-02
      相关资源
      最近更新 更多