当前位置: 移动技术网 > IT编程>开发语言>C/C++ > C++重载的构造函数不能互相调用

C++重载的构造函数不能互相调用

2018年02月24日  | 移动技术网IT编程  | 我要评论

一箱战歌之斧,萍乡长途汽车站,cf灵狐者裙底吧

java类里的重载构造函数可以互相调用,如下代码:

 1 public class TestConstructor {
 2     private int value;
 3 
 4     public TestConstructor(int value) {
 5         this.value = value;
 6         System.out.println("constructor1:"+this);
 7     }
 8 
 9     public TestConstructor() {
10         this(10);
11         System.out.println("constructor2:"+this);
12     }
13 
14     public static void main(String[] args) {
15         TestConstructor test = new TestConstructor();
16         System.out.println(test.value);
17         System.out.println(test);
18     }
19 }

代码执行结果是:

constructor1:TestConstructor@74a14482
constructor2:TestConstructor@74a14482
10
TestConstructor@74a14482

可见结果是预期的,对value赋值是成功的,且只创建了一个对象。

 

 

来看一下C++实现(头文件省略):

 1 #include "testconstructor.h"
 2 #include <QDebug>
 3 
 4 TestConstructor::TestConstructor()
 5 {
 6 //    this(10);
 7     TestConstructor(10);
 8     qDebug()<<"constructor1:"<<this;
 9 }
10 
11 TestConstructor::TestConstructor(int value)
12 {
13     this->value = value;
14     qDebug()<<"constructor2:"<<this;
15 }
 1 #include "testconstructor.h"
 2 #include <QDebug>
 3 
 4 int main(int argc, char *argv[])
 5 {
 6     TestConstructor *t = new TestConstructor();
 7     qDebug()<<t->value;
 8     qDebug()<<t;
 9     delete t;
10 }

代码执行结果是:

constructor2: 0x22fcf0

constructor1: 0xdadfb0

15574896

0xdadfb0 

一方面,对value设置的值没有生效,另一方面,两个构造函数创建了两个不同的对象,说明C++不能像java那样构造函数之间互相调用。

解决方法:

大多数构造函数互相调用的需求应该是有默认参数,在C++的函数声明中可以直接设置默认传参(java不支持默认参数),这样就不需要构造函数重载了:

TestConstructor(int value = 10);

  

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网