C++ explicit

C++中, 一个参数的构造函数, 承担了两个角色。 1 是个构造器 2 是个默认且隐含的类型转换操作符。

例如下面例子中C的构造函数C(int i)就是,既可以用来作为构造器,又可以实现隐式转换C c=2;但是有时这并不是我们想要的,就可以将这个构造函数声明为explicit,以避免将构造函数作为隐式类型转换符来使用。Copy constructor也是同样的,如果Copy constructor被声明为explicit,则这个类对象不能用于传参和函数返回值。但是仍然可以直接调用。

//  spec1_explicit.cpp
//  compile with: /EHsc
#include <stdio.h>

class C 
{
public:
     int i;
     explicit C( const C&)    //  an explicit copy constructor
    {
        printf_s( " \nin the copy constructor ");
    }
     explicit C( int i )    //  an explicit constructor
    {
        printf_s( " \nin the constructor ");
    }

    C()
    {
        i =  0;
    }
};

class C2
{
public:
     int i;
     explicit C2( int i )    //  an explicit constructor
    {
    } 
};

C f(C c)
{    //  C2558
    c.i =  2;
     return c;    //  first call to copy constructor
}

void f2(C2)
{
}

void g( int i)
{
    f2(i);    //  C2558
    
//  try the following line instead
    
//  f2(C2(i));
}

int main()
{
    C c, d;
     const C &cc= c;
     const C &ccc= c;
    ccc.C::C(cc);
    d = f(c);    //  c is copied
}

 

转载于:https://www.cnblogs.com/whyandinside/archive/2012/05/12/2497398.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值