我现在正在练习 C++ 中的重载运算符,但遇到了问题。我创建了 String 类,它只有字段一个是字符数组,另一个是长度。我有一个字符串“爱丽丝有一只猫”,当我打电话时
cout<<moj[2];
我想得到'i',但现在我得到 moj + 16u 地址的 moj + 2 sizeof(String) 当我打电话时
cout<<(*moj)[2];
它可以正常工作,但我想在重载的运算符定义中取消引用它。我尝试了很多东西,但我找不到解决方案。请纠正我。
char & operator[](int el) {return napis[el];}
const char & operator[](int el) const {return napis[el];}
和整个代码,重要的事情都在页面下方。它正在编译和工作。
#include <iostream>
#include <cstdio>
#include <stdio.h>
#include <cstring>
using namespace std;
class String{
public:
//THIS IS UNIMPORTANT------------------------------------------------------------------------------
char* napis;
int dlugosc;
String(char* napis){
this->napis = new char[20];
//this->napis = napis;
memcpy(this->napis,napis,12);
this->dlugosc = this->length();
}
String(const String& obiekt){
int wrt = obiekt.dlugosc*sizeof(char);
//cout<<"before memcpy"<<endl;
this->napis = new char[wrt];
memcpy(this->napis,obiekt.napis,wrt);
//cout<<"after memcpy"<<endl;
this->dlugosc = wrt/sizeof(char);
}
~String(){
delete[] this->napis;
}
int length(){
int i = 0;
while(napis[i] != '\0'){
i++;
}
return i;
}
void show(){
cout<<napis<<" dlugosc = "<<dlugosc<<endl;
}
//THIS IS IMPORTANT
char & operator[](int el) {return napis[el];}
const char & operator[](int el) const {return napis[el];}
};
int main()
{
String* moj = new String("Alice has a cat");
cout<<(*moj)[2]; // IT WORKS BUI
// cout<<moj[2]; //I WOULD LIKE TO USE THIS ONE
return 0;
}