0

私はコンストラクターをコピーするのが初めてで、ベクターの使用を開始するとコンストラクターが機能しないようです。

//  ROBOT CLASS
class Robot {
    private:
        char *name;
        int size;

        int cmdCount;

        command *cmdList;
        char items[8][16];
        int resources[3]; // silver, gold, then platinum

    public: 
        Robot( );
        Robot(int num_of_cmds, const char *nm);
        Robot(const Robot &);
        ~Robot( );

        const char *get_name( );
        command get_command(int pos) const;
        void set_item(const char item[ ], int pos);
        const char *get_item(int pos);

};

//  ROBOT CONSTRUCTOR default
Robot::Robot( ) {

    //  Load Robot name
    cmdCount = 5;
    try {
        name = new char[11];
    }
    catch(std::bad_alloc) {
        cout << "Error allocating " << 11+1 << " bytes of memory\n";
        name = NULL;
    }

    if (name) {
        strcpy (name, "univac.dat");
    }

    //  Allocate memory for command array
    vector <command> cmdList[5];

};

//  ROBOT COPY CONSTRUCTOR
Robot::Robot(const Robot &from) {
    cmdCount = from.cmdCount;
    //  Load Robot name
    try {
        name = new char[11];
    }
    catch(std::bad_alloc) {
        cout << "Error allocating " << 11+1 << " bytes of memory\n";
        name = NULL;
    }

    if (name) {
        strcpy (name, from.name);
    }

    //  Allocate memory for command array
    vector <command> cmdList[5];

    for (int i=0; i < cmdCount;i++) {
        cmdList[i] = from.cmdList[i];
    }

    for (int i=0; i < 8; i++) {
        strcpy(items[i], from.items[i]);
    }

    for (int i=0; i < 3; i++) {
        resources[i] = from.resources[i];
    }

}    

コンパイル時に発生するエラーは次のとおりです。

robot.cpp: コピー コンストラクター 'Robot::Robot(const Robot&)': robot.cpp:117: エラー: 'cmdList[i] = (((command )from->Robot: :cmdList) + ((unsigned int)(((unsigned int)i) * 172u)))' /usr/include/c++/4.4/bits/vector.tcc:156: 注: 候補は std::vector< _Tp, _Alloc>& std::vector<_Tp, _Alloc>::operator=(const std::vector<_Tp, _Alloc>&) [with _Tp = command, _Alloc = std::allocator]

コピー コンストラクターでベクトル配列をコピーするにはどうすればよいですか?

4

1 に答える 1

5

クラスで、メンバー変数を宣言します。

command *cmdList;

ただし、各コンストラクターで、同じ名前のローカル変数を宣言します。

vector <command> cmdList[5];

実際、メンバー変数の型を次のようにする必要がありますvector<command>

//  ROBOT CLASS
class Robot {
    private:
…
        std::vector<command> cmdList;    
…
};

次に、デフォルトのコンストラクターで、それにメモリを割り当てることができます。後でどのように使用するかによって、必ずしもそうする必要はありません。

//  ROBOT CONSTRUCTOR default
Robot::Robot( ) :cmdList(5) {
… // no mention of cmdList in the body required    
};

最後に、コピー コンストラクターで、それをコピーします。

//  ROBOT COPY CONSTRUCTOR
Robot::Robot(const Robot &from) : cmdList(from.cmdList) {
… // no mention of cmdList in the body required
}  


代替手段: 代替手段として、コンストラクターで初期化リストを使用しないことを選択した場合は、次のようにすることができます。

Robot::Robot() {
…
    cmdList = std::vector<command>(5);
    // or cmdList.resize(5);
…
}

Robot::Robot(const Robot &from) {
… 
    cmdList = from.cmdList;
…
}  


追加クレジット: 次の変更を行うと、コピー コンストラクターがまったく必要なくなる可能性があります。デストラクタや代入演算子も必要ありません。

 class Robot {
    private:
        std::string name;
        int size;

        int cmdCount;

        std::vector<command> cmdList;
        char items[8][16];
        int resources[3]; // silver, gold, then platinum

    public: 
        Robot( );
        Robot(int num_of_cmds, const char *nm);

        const char *get_name( ) { return name.c_str(); }
        command get_command(int pos) const { return cmdList[pos]; }
        void set_item(const char item[ ], int pos);
        const char *get_item(int pos);
};
于 2012-04-03T21:28:20.290 に答える