gpt4 book ai didi

c++ - 使用 Copliens 1994 计数指针示例代码获取编译错误

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:58:12 26 4
gpt4 key购买 nike

好的,我正在阅读 Copliens C++ Idioms 一书,并尝试运行书中的 handle/body 示例。输入代码后,出现编译错误:

这是 String 和 StringRep 类的代码。

#ifndef _STRINGREP_H_
#define _STRINGREP_H_
#include <stdio.h>
#include <string.h>

class String;

class StringRep {

friend class String;

public:
StringRep() {*(rep = new char[1])='\0';}
StringRep(const StringRep& s) {
::strcpy(rep=new char[::strlen(s.rep)+1], s.rep);
}
~StringRep() { delete [] rep;}
StringRep(const char* s) {
::strcpy(rep=new char[::strlen(s)+1], s);
}
String operator+(const String& s) const {
char *buf = new char[s->length() + length() + 1];
::strcpy(buf, rep);
::strcat (buf, s->rep);
String retval(&buf);
return retval;
}
int length() const { return ::strlen(rep); }
void print() const {::printf("%s\n", rep); }

private:
StringRep(char ** const r) {
rep = *r;
*r = 0;
count = 1;
};
char *rep;
int count;
};

#endif

#ifndef _STRING_H_
#define _STRING_H_

#include <stdio.h>
#include <string.h>
#include "StringRep.h"

class String {

friend class StringRep;

public:
String operator+(const String& s) const {return *p + s;}
StringRep* operator->() const {return p;}
String() {
(p = new StringRep())->count = 1;
}
String (const String &s) { (p=s.p)->count++;}
String(const char* s) {
(p = new StringRep(s))->count = 1;
}
String operator=(const String& s) {
if (--p->count <=0) delete p;
(p = s.p)->count++;
return *this;
}
~String() { if (--p->count <= 0) delete p;; }

private:
String(char **r) {
p = new StringRep(r);
}
StringRep *p;
};

#endif

还有一个main.cc

#include <stdio.h>
#include <string.h>
#include "StringRep.h"
#include "String.h"

int main() {

String a("abcd"), b("efgh");
printf("a is "); a->print();
printf("b is "); b->print();
printf("concat of a+b is "); (a+b)->print();
return 0;
}

编译错误;

GNU C++ version 4.1.2 20080704 (Red Hat 4.1.2-44) (x86_64-redhat-linux)
compiled by GNU C version 4.1.2 20080704 (Red Hat 4.1.2-44).
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 2d02d8750f9b337bb19a7dd5b4e2167e
StringRep.h: In member function 'String StringRep::operator+(const String&) const':
StringRep.h:21: error: return type 'struct String' is incomplete
StringRep.h:22: error: base operand of '->' has non-pointer type 'const String'
StringRep.h:24: error: base operand of '->' has non-pointer type 'const String'
StringRep.h:25: error: variable 'String retval' has initializer but incomplete type
String.h: In member function 'String String::operator+(const String&) const':
String.h:13: error: conversion from 'void' to non-scalar type 'String' requested

我认为在完全定义之前我不能使用 String 类。改变函数的签名

String& operator+(const String& s) const {...

解决了第一个错误,但导致相同的错误出现在我创建新的字符串对象

String retval(&buf);

我意识到我拥有的这本书是我拿起的 1994 年再版的。那么有人可以向我指出更新的代码(如果 C++ 编码风格发生了变化)或指出如何解决这个问题吗?

谢谢

最佳答案

你得到了一个循环引用,因为 StringRep 需要知道 String 的完整定义才能在 operator+ 中构造它。我建议不要将所有内容都放在头文件中,而只是成员函数的声明并将定义放在.cpp(或.cc) 文件。那应该解决它。如果类本身和/或函数不是模板,这也是代码应该如何拆分。

关于c++ - 使用 Copliens 1994 计数指针示例代码获取编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6602082/

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