码迷,mamicode.com
首页 > 编程语言 > 详细

非C++内建型别A和B,在哪几种情况下B能隐式转换为A

时间:2014-09-26 23:59:08      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   div   on   c   log   amp   

 

主要有一下四种方式

1. B public 继承自 A;

calss B : public A
{
  ...  
}

 2. 在 A中写参数为B的复制构造函数

calss A
{
  A(const B &b);  
}

3. 重写A的= operator 

A & operator(const B& );

 

非C++内建型别A和B,在哪几种情况下B能隐式转换为A

标签:style   blog   color   sp   div   on   c   log   amp   

原文地址:http://www.cnblogs.com/hana12169/p/3995588.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!