簡體   English   中英

C ++中的類中的矩陣

[英]matrix in a class in C++

以下代碼適用於三個類,Class One,Class Two,Class Three。

第三類采用兩個向量,第一個向量包含一個實例,第二個向量包含兩個實例。

我想通過Three中的方法獲得2D矩陣,該矩陣將具有兩個相等的索引,每個索引是一個實例的向量的大小。

我不知道在哪里聲明這個矩陣,以及如何初始化它。

我將在聲明矩陣之前呈現一個代碼正常工作,然后我將提供我的許多嘗試的一個例子,它不起作用並產生錯誤消息。

這是在聲明矩陣之前的代碼(它工作正常)

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

const unsigned int N = 5;

class One
{
 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
{
  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  
{
private:
     std::vector<One>   ones;
     std::vector<Two>   twos;    


public:
     Three(vector<One>& one_vector, vector<Two>& two_vector)
    : ones(one_vector), twos(two_vector)
     {
     }

     ~Three() {};

     vector<One> get_ones(){return ones;};
     vector<Two> get_twos(){return twos;};

     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;  

return 0;
}

現在我聲明了一個方法來生成三個矩陣,方法的名稱是get_Mat()這里是代碼:

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

const unsigned int N = 5;

class One
{
 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
{
  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  
{
private:
     std::vector<One>   ones;
     std::vector<Two>   twos;    


public:
     Three(vector<One>& one_vector, vector<Two>& two_vector)
    : ones(one_vector), twos(two_vector)
     {
     }

     ~Three() {};

     vector<One> get_ones(){return ones;};
     vector<Two> get_twos(){return twos;};

     void set_ones(vector<One> vector_1_value) {ones = vector_1_value;};
     void set_twos(vector<Two> vector_2_value) {twos = vector_2_value;};

     unsigned int get_Mat() {
                         unsigned int mat[ones.size()][ones.size()];
                         for(unsigned int i = 0; i < ones.size(); ++i)
                              for(unsigned int j = 0; j < ones.size(); ++j)
                                    mat[i][j] = 1;
                          return mat;}          

};



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;  

return 0;
}

如果你能幫助我找到一種通過第三課中的方法生成這個矩陣的方法,我將非常感激。

謝謝。

get_Mat返回一個整數,而不是矩陣。 最好使用vector<vector<unsigned int> > ,這樣可以避免以后出現很多麻煩。

或者看看這里(c ++):

從函數返回一個二維數組

或在這里(C):

從函數返回一個二維數組

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM