operator= 연산자와 operator+ 연산자

dltkddyd의 이미지

클래스를 하나 만들었습니다. 그리고 그 클래스 타입의 가산연산을 지원하기 위해 operator+ 이항연산자와 operator= 이항연산자를 재정의했습니다. 그리고 생성자를 또 하나 만들었고요.
operator+ 연산자는 동일한 클래스의 객체를 매개변수로 받아들입니다. 그리고 함수내부에서는 동일한 클래스로 객체를 선언해서 그 객체에 나름의 방식으로 두 인수의 합을 저장합니다. + 연산은 두 항의 값을 변경해서는 안되기 때문이죠. 그리고 operator= 연산자에서는 operator+ 함수의 반환값을 인ㅅ로 받습니다. 그 과정 중에 만들었던 생성자가 호출되고요. 말로 하자니 복잡하네요. 만들었던 함수를 직접 언급하겠습니다. 정의한 클래스 이름은

template
class Array

위와 같습니다. 그리고 그 안에 멤버함수는 다음과 같고요.

Array operator+(Array& left, Array& right) {
if(left.second==NULL || right.second==NULL) {left.processException(7);}
if(mystrlen(left.second)>2 || mystrlen(right.second)>2) {left.processException(8);}
Array result;
result.second=new int[1];
result.second[0]=(int)left.second[0]+(int)right.second[0];
return result;
}

Array& operator=(Array obj) {
if(&typeid(second)==&typeid(char*)) {
if(second!=NULL) {delete[] second;}
second=(T1*)new char[1];
second[0]=*(obj.second);
}
else {
if(&typeid(second)==&typeid(int*)) {
if(second==NULL) {second=(T1*)new int[1];}
}
if(&typeid(second)==&typeid(float*)) {
if(second==NULL) {second=(T1*)new float[1];}
}
if(&typeid(second)==&typeid(double*)) {
if(second==NULL) {second=(T1*)new double[1];}
}
if(&typeid(second)==&typeid(unsigned*)) {
if(second==NULL) {second=(T1*)new unsigned[1];}
}
if(&typeid(second)==&typeid(short int*)) {
if(second==NULL) {second=(T1*)new short int[1];}
}
if(&typeid(second)==&typeid(unsigned char*)) {
if(second==NULL) {second=(T1*)new unsigned char[1];}
}
second[0]=obj.second[0];
}
return *this;
}

Array(Array& obj) {
if(obj.second==NULL) {processException(10);}
first=new char[strlen(obj.first)+1];
strcpy(first,obj.first);
if(second!=NULL) {delete[] second;second=NULL;}
if(&typeid(second)==&typeid(char*)) {
second=(T1*)new char[2];
second[1]=0;
}
else if(&typeid(second)==&typeid(unsigned char*)) {
second=(T1*)new unsigned char[2];
second[1]=0;
}
else {
if(&typeid(second)==&typeid(int*)) {second=(T1*)new int[1];}
if(&typeid(second)==&typeid(float*)) {second=(T1*)new float[1];}
if(&typeid(second)==&typeid(double*)) {second=(T1*)new double[1];}
if(&typeid(second)==&typeid(unsigned*)) {second=(T1*)new unsigned[1];}
if(&typeid(second)==&typeid(short int*)) {second=(T1*)new short int[1];}
}
second[0]=*(obj.second);
}

그리고 다음과 같이,

Array a;
a.makeElements(1);
a[0]="age";
Array b;
b.makeElements(1);
b[0]="echo";
Array result;
result=a[0]+b[0];//여기에서

이와 같이 하고 컴파일하면 operator+의 반환값 result가 반환되는 과정에서 operator= 가 호출되고 Array(Array& obj) 가 호출되는 과정에서 컴파일 에러가 발생합니다. result 반환값이 멤버함수의 지역변수이기 때문인 것으로 보입니다. 어떻게 해야 이 오류를 바로잡을 수 있나요?

kid1402의 이미지

일단 Array a 선언하실 때 뭘 담을 건지에 대한 정의를 안적어 주신거 같은데 한번 확인해보세요..
obj 타입이 명확하지 않아 그런걸 수도 있으니
Array a랑 Array b 로..

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.