オーバーロードに大きな問題がありますが[]
、例に示されているとおりに使用しましたが、機能しません。コンパイラーにも表示されません。
エラーが発生します:
'std::cout << * moj の 'operator<<' に一致しません
2 つ目の問題は、コピー コンストラクトを使用しても、元のオブジェクトを削除すると、コピーされたオブジェクトが消えてしまうことです。しかし、デストラクタプログラムを追加すると、クラッシュするだけです。
C:\Documents and Settings\Duke\Moje dokumenty\MaciekK\String\main.cpp|90|error: no match for 'operator<<' in 'std::cout << * moj'|
#include <iostream>
#include <cstdio>
#include <stdio.h>
#include <cstring>
using namespace std;
class String{
public:
char* napis;
int dlugosc;
char & operator[](int el) {return napis[el];}
const char & operator[](int el) const {return napis[el];}
String(char* napis){
this->napis = napis;
this->dlugosc = this->length();
}
String(const String& obiekt){
int wrt = obiekt.dlugosc*sizeof(char);
//cout<<"before memcpy"<<endl;
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;
}
};
int main()
{
String* moj = new String("Ala ma kota");
// cout<< moj[0] <<endl; // I GETT ERROR NO MATH FOR OPERATO<< IN STD:: COUTN<< * MOJ
String* moj2 = new String(*moj);
moj->show();
delete moj;
moj2->show();
return 0;
}