我对超载 < > < <
i 有很大的问题。 我完全按照实例中显示的那样使用了它,但汇编者甚至看不到它。
我知道错误:
在 std:: cout<<< * moj 中, 运算符 < < 没有匹配
第二个问题是,即使我用复制件构建,如果我删除原始对象, 复制的碎片就会消失。但现在当我添加毁灭器程序时, 崩溃了。
C:Documents and SettingsDukeMoje dokumentyMaciekKStringmain.cpp|90|error: 在 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] != ){
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;
}