C++에서 궁금한게 있습니다!!

greathero의 이미지

class Robot {
public:
    static Robot& createRobot(string name, int level): mName(name), mLevel(level) { }
    virtual upgradeLevel() = 0; 
private:
    Robot();
    Robot(const Robot& rhs);
    Robot& operator=(const Robot& rhs);
 
    string mName;
    int mLevel;
};

---------------------------------------------------------------
Robot이라는 매우 간단한 클래스입니다.
궁금한게 2가지가 있습니다.

Q1. Robot이라는 클래스에서는 "createRobot"이라는 static 함수를 써서만 객체를 생성할 수 있게하려고 합니다.
따라서, 기본 생성자는 물론 복사 생성자, 복사 대입 연산자까지 private으로 막아두었는데요.

Robot r1 = Robot.createRobot("kkbot", 1);
위와 같은 문장으로 생성을 하려니 "Error. Robot::Robot(const Robot& rhs)에 엑세스 할 수 없다."는 에러가 뜹니다.
저는 static 함수로 객체를 생성하려 했을 뿐인데 왜 위의 코드에서 복사 생성자가 불리게 되는지 이해가 되질 않습니다.
어떻게 하면 에러 없이 제가 의도한 대로 static 함수를 써서만 객체를 생성할 수 있을까요?

Q2. Robot 클래스의 데이터 멤버인 mName(로봇의 이름), mLevel(로봇의 레벨)을 주목해주시기 바랍니다.
저는 Robot 클래스를 추상 클래스로 제공해서 다른 클래스들이 상속받고 이 데이터 멤버들을 쓰게 하고 싶은데요.
private에 있는 데이터 멤버들은 상속받았다 하더라도 접근이 안되잖아요.
그렇다고 public에 데이터 멤버들을 두자니 영 찝찝하고...
어떻게 하면 좋을까요? 좋은 설계 방법이 있을까요?

제가 생각해본 1안) base 클래스의 데이터 멤버를 public에 놓고 상속은 private 상속으로 받는다.
제가 생각해본 2안) 좀 귀찮더라도 데이터 멤버는 상속되는 클래스들에 일일이 선언한다.
(예를 들면, class ARobot: public Robot { ... private: string mName; int mLevel; }; <- 이렇게)

gilgil의 이미지

Robot robot; // default constructor

Robot robot(other); // copy constructor

Robot robot;
robot = other; // assign operator

Robot robot = other; // NOT assign operator BUT copy constructor

객체의 선언과 동시에 "="을 사용하면 assign operator가 호출되지 않고 copy constructor가 호출되게 됩니다.

해결 방법은

greathero의 이미지

우어 궁금...

gilgil의 이미지

해결 방법은

1. call by value(pointer)로 한다.

Robot* r1 = Robot::createRobot("kkbot", 1); 

2. call by reference로 한다.

Robot& r1 = Robot::createRobot("kkbot", 1); 

단 2번에서는 createRobot라는 static function이 return하는 객체의 scope(언제 객체가 해제될 것인지)에 대한 주의를 해 주셔야 합니다.

ps : Distinguish default , explicit and copy constructor and assign operator ( http://www.gilgil.net/9399 )

댓글 달기

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