我有以下代码。 在我的.h文件中:
#ifndef STRING_H
#define STRING_H
#include <cstring>
#include <iostream>
class String {
private:
char* arr;
int length;
int capacity;
void copy(const String& other);
void del();
bool lookFor(int start, int end, char* target);
void changeCapacity(int newCap);
public:
String();
String(const char* arr);
String(const String& other);
~String();
int getLength() const;
void concat(const String& other);
void concat(const char c);
String& operator=(const String& other);
String& operator+=(const String& other);
String& operator+=(const char c);
String operator+(const String& other) const;
char& operator[](int index);
bool find(const String& target); // cant const ??
int findIndex(const String& target); // cant const ??
void replace(const String& target, const String& source, bool global = false); // TODO:
friend std::ostream& operator<<(std::ostream& os, const String& str);
};
std::ostream& operator<<(std::ostream& os, const String& str);
#endif
.cpp文件:
//... other code ...
char& String::operator[](int index) {
if (length > 0) {
if (index >= 0 && index < length) {
return arr[index];
}
else if (index < 0) {
index = -index;
index %= length;
return arr[length - index];
}
else if (index > length) {
index %= length;
return arr[index];
}
}
std::ostream & operator<<(std::ostream & os, const String & str) {
for (int i = 0; i < str.length; i++) {
os << str.arr[i]; // can't do str[i]
}
return os;
}
在.h中,我宣布了运算符&lt;&lt;作为朋友的功能,并作出实际功能的声明。但是如果我尝试在运算符中使用它&lt;&lt;我得到&#34;没有operator []匹配这些操作数&#34;。我知道这是一个新手的错误,但我似乎无法弄明白。
答案 0 :(得分:1)
char& String::operator[](int index)
不是const
函数,因此您无法在流媒体运算符中的const
对象(例如str
)上调用它。你需要一个类似的版本:
const char& String::operator[](int index) const { ... }
(您只需返回char
,但const char&
允许客户端代码获取返回字符的地址,这支持例如计算字符之间的距离。)