C++ - 类型转换构造函数

概念

  • 目的
    • 实现类型的自动转换
  • 特点
    • 只有一个参数
    • 不是复制构造函数
  • 编译系统会自动调用 - > 转换构造函数
    -> 建立一个 临时对象 /临时变量
class Complex{
    public:
          double real,image;
          Complex(int i){
              cout<<"IntConstructor called"<

你可能感兴趣的:(C++ - 类型转换构造函数)