new对象时,类名后加括号与不加括号的区别

原文地址如下:http://www.cnblogs.com/Braveliu/p/4263145.html


关于默认构造函数,请参见随笔《类中函数

  请看测试代码:

复制代码
 1 #include <iostream>
 2 using namespace std;
 3 
 4 // 空类
 5 class empty
 6 {
 7 };
 8 
 9 // 一个默认构造函数,一个自定义构造函数
10 class Base
11 {
12 public:
13     Base() 
14     { 
15         cout << " default Base construct " << endl;
16         m_nValue = 100; 
17     };
18     Base(int nValue) 
19     { 
20         cout << " custom Base construct " << endl;
21         m_nValue = nValue; 
22     };
23 
24 private:
25     int m_nValue;
26 };
27 
28 // 一个默认复合构造函数
29 class custom
30 {
31 public:
32     custom(int value = 100)
33     { 
34         cout << " default && custom construct " << endl;
35         m_nValue = value; 
36     }
37 
38 private:
39     int m_nValue;
40 };
41 
42 void main()
43 {
44     empty* pEmpty1 = new empty;
45     empty* pEmpty2 = new empty();
46 
47     Base* pBase1 =  new Base;
48     Base* pBase2 = new Base();
49     Base* pBase3 = new Base(200);
50 
51     custom* pCustom1 = new custom;
52     custom* pCustom2 = new custom();
53 
54     delete pEmpty1;
55     delete pEmpty2;
56 
57     delete pBase1;
58     delete pBase2;
59     delete pBase3;
60 
61     delete pCustom1;
62     delete pCustom2;
63 }
64 // Result:
65 /*
66 default Base construct
67 default Base construct
68 custom Base construct
69 default && custom construct
70 default && custom construct
71 */
复制代码

  至此足以。

【2】加括号与不加的区别

  (1)加括号

    1. 若括号为空,即无实参项,那么理解为调用默认构造函数;

    2. 若括号非空,即有实参项,可以理解为调用重载构造函数,或默认复合构造函数。

  (2)不加括号

    调用默认构造函数,或默认复合构造函数。


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值