【C++】41.类型转换函数

C语言中纯在如下的转换

    unsigned int ui = 1000;
    int i = -2000;
    cout << ui + i << endl;  //是个正数, int 隐式类型转换成了unsigned int
    
short s = 'a';
cout << "sizeof(s + 'b') = " << sizeof(s + 'b') << endl;
// = 4   编译器认为int类型的运算效率高   所以两个类型都转换成int了

普通类型与类类型之间能否进行类型转换?类类型之间能否进行类型转换?

转换构造函数的定义:

class Test
{
    int m_value;
public:
      Test()
      {}
      Test(int i)    // 转换构造函数(其实就是带有一个参数的构造函数)
      {}    
      
      Test operator +(const Test& p)
      {
          Test ret(m_value + p.m_value);
      }
      int value()
      {
          return m_value;
      }
};


Test t;
t = 5;     // 编译器进行了隐式类型转换  t = Test(5);

Test r;
r = t + 10 // 编译能通过, 编译器默认进行了 r = t + Test(10);

编译器进行如下过程:

做了隐式类型的转换(调用构造函数)

class Test
{
    int mValue;
public:
    Test()
    {
        mValue = 0做了隐式类型的转换(调用构造函数);
    }
    
    explicit Test(int i)  // 杜绝编译器的隐式类型转换
    {
        mValue = i;
    }
    
    Test operator + (const Test& p)
    {
        Test ret(mValue + p.mValue);
        
        return ret;
    }
    
    int value()
    {
        return mValue;
    }
};


Test t;
t = static_cast<Test>(5);  // 或者   t = (Test)(5);

Test r;
r = t + static_cast<Test>(10); // // r = t + Test(10);

cout << r.m_value << endl;  // 15;

 

注:根据狄泰课程做的笔记

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值