g++에서 연산자 overriding과 복사생성자가 함께 쓰여진 경우

hwiorb의 이미지

이항 연산자를 overriding해서 사용하려고 합니다. return 될때 복사생성자가 호출되어야 할 것 같은데,
왜 복사생성자가 호출이 안되고, 객체 참조가 되는지 이유를 모르겠습니다.
소스는 아래와 같습니다

어떻게 해야 될까요? 도움 부탁드립니다.

#include <iostream>
#include <string.h>
 
using namespace std;
 
class CopyCons
{
	char * st;
public:
	CopyCons()
	{
		st = NULL;
	}
 
	CopyCons(char * st);
	CopyCons(CopyCons &s);
 
	CopyCons operator + (char * st);
 
	virtual ~CopyCons();
	char * get_st()
	{
		return st;
	}
};
 
CopyCons::CopyCons(char * st)
{
	this->st = new char[strlen(st) + 1];
	strcpy(this->st, st);
}
 
CopyCons::CopyCons(CopyCons &s)
{
	this->st = new char[strlen(s.st) + 1];
	strcpy(this->st, s.st);
}
 
CopyCons::~CopyCons()
{
	if(st != NULL)
		delete [] st;
}
 
CopyCons CopyCons::operator + (char * s)
{
	char * buffer = new char[strlen(st) + strlen(s) + 1];
	strcpy(buffer, st);
	strcat(buffer, s);
	CopyCons t(buffer);
	delete [] buffer;
 
	return t;	
}
 
int main()
{
	CopyCons c1("hello"), c2;
	c2 = c1 + " world~!";
	cout << "um? " << c2.get_st() << endl;
}

hwiorb의 이미지

기존 소스에서 대입연산 override가 쓰고있는 까닭에 이 건 아닐거라고 생각했는데,
대입 연산자까지 override를 해야지만, 제대로 된 결과를 볼수 있군요.

nil.

gilgil의 이미지

c2 = c1 + " world~!"; // <-- (1)
 
(1)번에서는 제일 나중에 copy assignment가 호출이 됩니다. operator=가 호출이 되기 때문에 "=" operator를 명시해 줘야 합니다.
 
 
 
copy constructor와 copy assignment가 헷갈리는 경우가 있는데 주의해야 합니다. 예를 들면
 
std::string s1 = "abcde"; // 이건 copy constructor(copy assignment가 아님)
 
std::string s2;
s2 = "abcde"; // 이건 copy assignment
 
 
 
위에서 copy assignment가 호출되지 않게 하기 위해서는 다음과 같이 해 주면 됩니다.
 
1. CopyCons c2 = c1 + " world~!"; // 선언과 동시에 =를 사용한다. copy assignment(=)가 호출이 안되고 copy constructor가 호출이 된다.
 
2. CopyCons& c2 =c1 + " world~!"; // pointer assignment 만 일어 난다. 

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.