不能在友元函数中使用重载运算符
Cannot use overloaded operator in friend function
我有以下代码。
在我的 .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 中,我将 operator<< 函数声明为友元,并声明了实际函数。但是如果我尝试在 operator<< 中使用它,我会得到 "no operator[] matches these operands"。我知道这是一个菜鸟错误,但我似乎无法弄清楚。
char& String::operator[](int index)
不是 const
函数,因此您不能在流式运算符中对 const
对象(例如 str
)调用它。你需要一个像这样的版本:
const char& String::operator[](int index) const { ... }
(您可以简单地 return char
,但是 const char&
让客户端代码获取 returned 字符的地址,它支持例如计算字符之间的距离.)
我有以下代码。 在我的 .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 中,我将 operator<< 函数声明为友元,并声明了实际函数。但是如果我尝试在 operator<< 中使用它,我会得到 "no operator[] matches these operands"。我知道这是一个菜鸟错误,但我似乎无法弄清楚。
char& String::operator[](int index)
不是 const
函数,因此您不能在流式运算符中对 const
对象(例如 str
)调用它。你需要一个像这样的版本:
const char& String::operator[](int index) const { ... }
(您可以简单地 return char
,但是 const char&
让客户端代码获取 returned 字符的地址,它支持例如计算字符之间的距离.)