2013年6月11日
摘要: Conversion Operatoroperator type();type表示内置类型名、类类型名、类型别名。不可转换为数组和函数类型,可转换为指针和引用类型。class SmallInt {public: SmallInt(int i = 0) : val(i) { if (i 255) throw std::out_of_range("Bad SmallInt intializer"); } operator int() const { return val; }private: std::size_t val;};应用:int calc(int);S... 阅读全文
posted @ 2013-06-11 20:31 chenkkkabc 阅读(163) 评论(0) 推荐(0) 编辑