0

クラス Third を提示するコードを作成し、それぞれ他の 2 つのクラス One と Two のインスタンスを取得します。マトリックス Mat とメソッド get_Mat を 3 番目のクラスに追加するまで、すべてが正常に機能していました。このコードはエラーメッセージを生成しませんが、実行すると main の return 0 の前の行まで実行され、コンパイラによって何か問題が発生したため終了し、閉じる必要があります。問題。

ありがとう。

#include<iostream>
#include<vector>
#include <stdlib.h>   
using namespace std;

class One        // this the first class
{
 private:
     unsigned int id;                                 
public:   
    unsigned int get_id(){return id;};   
    void set_id(unsigned int value) {id = value;};
    One(unsigned int init_val = 0): id(init_val) {};   // constructor
    ~One() {};                                         // destructor
};
////////////////////////////////////////////////////////////////////
class Two        // the second class
{
  private:
    One first_one;                 
    One second_one;                
    unsigned int rank;                      
  public:   
    unsigned int get_rank() {return rank;};
    void set_rank(unsigned int value) {rank = value;};
    unsigned int get_One_1(){return first_one.get_id();};
    unsigned int get_One_2(){return second_one.get_id();};

    Two(const One& One_1 = 0, const One& One_2 =0 , unsigned int init_rank = 0)
    : first_one(One_1), second_one(One_2), rank(init_rank)
     {
     }  

    ~Two() {} ; // destructor

};
///////////////////////////////////////////////////////////// 
class Three     // the third class  
{
private:
     std::vector<One>   ones;
     std::vector<Two>   twos;    
     vector<vector<unsigned int> > Mat;

public:
     Three(vector<One>& one_vector, vector<Two>& two_vector)
    : ones(one_vector), twos(two_vector)
     { 
       for(unsigned int i = 0; i < ones.size(); ++i)
            for(unsigned int j = 0; j < ones.size(); ++j)
                Mat[i][j] = 1;
     }

     ~Three() {};

     vector<One> get_ones(){return ones;};
     vector<Two> get_twos(){return twos;};
     unsigned int get_Mat(unsigned int i, unsigned int j) { return Mat[i][j];};
     void set_ones(vector<One> vector_1_value) {ones = vector_1_value;};
     void set_twos(vector<Two> vector_2_value) {twos = vector_2_value;};


};
///////////////////////////////////////////////////////////////////////
int main()
{
cout<< "Hello, This is a draft for classes"<< endl;
vector<One> elements(5);
cout<<elements[1].get_id()<<endl;

vector<Two> members(10);
cout<<members[8].get_One_1()<<endl;

Three item(elements, members);
cout<<item.get_ones()[3].get_id() << endl;  

cout << item.get_Mat(4, 2) << endl;
return 0;
}
4

1 に答える 1