gpt4 book ai didi

c++ - 指针和构造函数的问题

转载 作者:太空宇宙 更新时间:2023-11-04 14:51:26 26 4
gpt4 key购买 nike

以下代码无效:

class String{
public:
char* str;
int* counter;

String(){
str = NULL;
counter = new int;
*counter = 1;
};
String(const char* str1){
String();
str = new char[strlen(str1)+1];
strcpy(str, str1);
};


};

我已经更改了对空构造函数的调用并将其替换为其内部结构,现在以下代码可以运行:

class String{
public:
char* str;
int* counter;

String(){
str = NULL;
counter = new int;
*counter = 1;
};
String(const char* str1){
//String();
str = new char[strlen(str1)+1];
strcpy(str, str1);
counter = new int;
*counter = 1;
};

你能告诉我为什么吗?

谢谢,李。

最佳答案

“不起作用”不是对问题的恰当描述。但是您显然试图从另一个构造函数调用构造函数。这称为构造函数委托(delegate),C++(目前)还不支持它。

顺便说一句,像这样的类应该有一个用户定义的复制构造函数、赋值运算符和析构函数。

关于c++ - 指针和构造函数的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3709827/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com