1. 首页
  2. 存储
  3. Dell
  4. EDA/PLD中的C++中用户定义的转换

EDA/PLD中的C++中用户定义的转换

上传者: 2020-11-09 00:04:59上传 PDF文件 45.61KB 热度 12次
(1)用户定义的转换的必要性: 我们希望能够在SmallInt对象和其他SmallInt对象或者内置算术类型的对象之间进行加减操作,我们要通过提供6个SmallInt操作符函数来实现对这些操作的支持: class SmallInt ...{ friend operator+( const SmallInt &, int ); friend operator-( const SmallInt &, int ); friend operator-( int, const SmallInt & ); friend operator+( int, const Sm
用户评论