c++에서 생성자가 다른 생성자를 호출하는 방법

reddragon의 이미지

눈팅만 하다가 드디어 첫글 올리게 되네요 ..;;

class A {
    A() {
        blah~ blah~
    }
    A(String str) {
        this(); // blah~ blah~ part -_-;;
        blah2~ blah2~
    }

    ...
}

자바에서는 위와 같이, 생성자가 여러 종류 있을 때,
그 중, 생성자가 꼭 해야하는 일이 있으면, 클래스 내의 다른 생성자를
this() 를 통해서 부를 수 있는데요.

제목과 마찬가지로, c++에서는 위와 같은 것을 어떻게 할 수 있는지 궁금합니다.
this->~A();
처럼 디스트럭터를 직접 호출할 수는 있던데,
this->A(); 라고 해봤더니 뭐라 하네요. :(

cedar의 이미지

C++에는 this()와 같은 용법은 없고요,
별도의 초기화 함수를 쓰면 간단하게 동일하게 구현할 수 있습니다.

class A 
{
public:
    A() { init(); }
    A(const std::string& str) 
    {
        init();
        blah2~ blah2~
    }
    
    init() 
    {
        blah~ blah~
    }
private:
    프라이빗 멤버 정의
};

그러나 대부분은 default parameter를 사용해서 하나의 생성자로 해결할 수 있는 경우가 많죠.

Testors의 이미지

this->A(); <- 이렇게 하지 말고

A();

라고 해보세요.

reddragon의 이미지

저 역시 우선 땜빵으로 cedar님의 말씀처럼
공통적으로 사용할 부분을 멤버함수로 하여서 쓰고 있습니다. ^^;

또한 Testors님의 말씀을 보고, 이제서야 --;; 테스트를 해 보았습니다.

class A {
public:
    A();

    A(char *tmp);

    A(char *tmp, bool);

    ~A();

private:
    char *debug;
    bool flag;
};

생성자 A(char *)와 생성자 A(char*, bool) 모두 내부적으로 A(); 로 하니깐 되더군요
(친구한테서 답변 들었던거 같은데 해보지도 않았네요 :oops: )

그런데, 저런 사용은 꼭 A(); 즉, 인자가 없는 생성자에 한해서만 되나요?
생성자 A(char*, bool) 에서 A(char *)를 호출하면

Quote:
declaration of `tmp' shadows a parameter

라고 에러가 나네요;
인자가 있는 생성자는 그럼 어찌 사용할 수 있나요? ;;

~(_ _)~ 헙~
_(ㅡ0ㅡ)_ 푸~

Testors의 이미지

일단 아래 방법을 써보시지요..

class A
{
public:
    A( char* p ) {
        std::cout << p  << std::endl;
    }
    A( char* p, bool b ) {
        A( (char*)p );
    }
};

이게 가능한 이유는 좀더 고민해보고 써보겠습니다.
저도 명확하게 이해를 못해서리.. 뒤적이는 중입니다. ^^;;

wafe의 이미지

Testors wrote:
this->A(); <- 이렇게 하지 말고

A();

라고 해보세요.

이렇게는 제대로 동작하지 않습니다. 아래 코드를 한 번 돌려보세요. 다른 생성자를 직접 호출하는 것은 원하지 않는 동작을 보여줍니다.

#include <iostream>

using namespace std;

class TestClass
{
public:
    TestClass()
    {   
        aa[0] = 'a';
        aa[1] = '\0';
    }
    
    TestClass(char arg)
    {   
        TestClass();
        aa[1] = arg;
        aa[2] = '\0';
    }
    
    char aa[10];
};

int main()
{
    cout << endl;

    TestClass ta;
    cout << ta.aa << endl;
    TestClass tb('b');
    cout << tb.aa << endl;
}

이 코드가 의도한 출력 결과는

a
ab

이지만, 의도한 대로 출력되지 않습니다.

Heejoon Lee

Testors의 이미지

그냥 A() 는 해당 인스턴스에 대해서 생성자를 호출하는게 아니라

임시객체를 하나 만드는것일 뿐이군요.

(우선 this 가 다르고 소멸자가 두번 호출되는것으로 확인 가능)

아마 최적화하면 그마저 제거될테고.. >.<

역시 방법이 new 연산자를 이용하는것 밖에 없을듯 하네요.

아래와 new 연산자를 이용해 같이 메모리 할당 없이 생성자만 부를 수 있습니다.

#include <iostream> 

using namespace std; 

class TestClass 
{ 
public: 
    TestClass() 
    {    
        aa[0] = 'a'; 
        aa[1] = '\0'; 
    } 
    
    TestClass(char arg) 
    {    
        new (this) TestClass(); 
        aa[1] = arg; 
        aa[2] = '\0'; 
    } 
    
    char aa[10]; 
}; 

int main() 
{ 
    cout << endl; 

    TestClass ta; 
    cout << ta.aa << endl; 
    TestClass tb('b'); 
    cout << tb.aa << endl; 
} 

그나저나 일반적인 호출이 왜 안되는지는 역시 연구중 ^^;

wafe의 이미지

new (this) TestClass();

g++ 2.95.4에서는 컴파일이 안되네요. ;;

Quote:
too many arguments to function `void * operator new(unsigned int)

Heejoon Lee

purewell의 이미지

사족으로 operator () 도 있습니다;;

class MyClass
{
  bool operator () (const char* pMsg) { cerr << pMsg << endl; return true;}
}



....



MyClass mycls;

mycls("까꿍");

_____________________________
언제나 맑고픈 샘이가...
http://purewell.biz

댓글 달기

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