1

我在 Visual Studio 2008 中收到此错误:错误 1 ​​错误 C2664:'BaseUtil::Type::CDouble::CDouble(const BaseUtil::Type::CDouble &)':无法从 'boost::icl:: 转换参数 1 no_type' 到 'const BaseUtil::Type::CDouble &'

这是我的类界面:

class CDouble
{
public: 
  CDouble();
  CDouble(const CDouble& _obj);
  CDouble(const double& _val);

  bool operator==(const CDouble& _obj) const;
  bool operator==(const double& _obj) const; 
  bool operator!=(const CDouble& _obj) const;
  bool operator<=(const CDouble& _obj) const;
  bool operator>=(const CDouble& _obj) const;
  bool operator< (const CDouble& _obj) const;
  bool operator> (const CDouble& _obj) const;

  CDouble& operator= (const CDouble& _obj);
  CDouble& operator+=(const CDouble& _obj);
  CDouble& operator-=(const CDouble& _obj);

  const CDouble operator+(const CDouble& _obj) const;
  const CDouble operator-(const CDouble& _obj) const;

  const double operator/(const CDouble& _obj) const;

  CDouble& operator= (double _value);
  CDouble& operator+=(double _value);
  CDouble& operator-=(double _value);
  CDouble& operator*=(double _value);
  CDouble& operator/=(double _value);

  const CDouble operator+(double _value) const;
  const CDouble operator-(double _value) const;
  const CDouble operator*(double _value) const;
  const CDouble operator/(double _value) const;

  operator double() const {return m_value;} 

private:
  CDouble& operator*=(const CDouble&  _obj);
  const CDouble operator*(const CDouble&  _obj) const;
  CDouble& operator/=(const CDouble&  _obj);

  double m_value;
};

触发编译错误的代码:

  template <class BoundType>
  class Interval
  {
  public:
    BoundType Length() const
    {
      return boost::icl::length(
        boost::icl::construct<boost::icl::interval<BoundType>::type>(m_LowerBound,    m_UpperBound, m_IntervalType())
       );
    }

  private:
    BoundType m_LowerBound, m_UpperBound; 
    typedef boost::icl::interval_bounds (*IntervalType)(); 
    IntervalType m_IntervalType;
  }

  int main()
  {
    Interval<CDouble> typeDouble(-1.0, 1.0);
    typeDouble.Length(); //<-- COMPILE ERROR
  }

我不明白这个错误,也不知道如何解决它。

它适用于基本类型(int,double,..)

任何人都可以帮忙吗?

4

2 回答 2

1

这是来自 boost 1.52 头文件的长度函数:

template<class Type>
inline typename boost::enable_if<is_continuous_interval<Type>, 
  typename difference_type_of<interval_traits<Type> >::type>::type
length(const Type& object)
{
    typedef typename difference_type_of<interval_traits<Type> >::type DiffT;
    return icl::is_empty(object) ? identity_element<DiffT>::value()
                                 : upper(object) - lower(object);
}

在文件中找到:boost\icl\type_traits\difference_type_of.hpp

template <class Type>
struct get_difference_type<Type, false, false>
{
    typedef no_type type;
};

所以我假设支持差异数字运算符的类型的 boost 头文件默认实现是no_type

必须做的是在编译时提供与您的构造函数之一匹配的差异类型的定义。即,例如,构造函数副本就是您的情况。

虽然,您的类型看起来像是数值上的 wapper,但也许 boost 头文件没有得到它。请在您的一个头文件中使用专有名称空间测试此代码段。

#include <boost_1_52_0\boost\icl\type_traits\is_numeric.hpp>

namespace boost{ namespace icl
{
    template <> 
    struct is_numeric<CDouble>
    {
        typedef is_numeric type;
        BOOST_STATIC_CONSTANT(bool, value = true );
    };
} }

如果它不能按原样工作,诀窍是告诉 boost 你的类型具有差异类型(CDouble),以便复制构造函数起作用。

于 2013-01-07T17:49:14.483 回答
1

谢谢你的回答,但我用这个代替:

namespace std
{
  template <> 
  class numeric_limits<BaseUtil::Type::CDouble> : public numeric_limits<double>
  {
  };
}  
于 2013-01-08T13:59:57.943 回答