数组的 C++ 类构造函数

c++ class constructor for array

本文关键字:构造函数 C++ 数组      更新时间:2023-10-16

我正在写一个Matrix2D类。一开始我使用构造函数作为 folows,

我的代码:

Matrix2D(float a,float b, float c,float d)
{
    a_=a;
    ....
} 

但是,我刚刚意识到,如果我可以使用多维array [2][2],那就更好了。这就是问题所在,如何为数组编写构造函数?

class Matrix
{
    float matrix[2][2];
    public:
    Matrix2D(float a,float b,float c, float d)
    {
        matrix[2][2]={a,b,c,d} // not valid
    }
}

只是为了让你知道,我不要求完整的代码。我只需要有人让我走上正轨。

对于 C++11,您可以执行以下操作:

Matrix(float a,float b,float c, float d) :
   matrix{{a,b},{c,d}}
{
}

C++03没有干净的替代品。

matrix[0][0] = a; // initialize one element

等等。

矩阵[0][0] = 你想要的值 矩阵 [n][n] = 你想要的值,但在循环中计数因此,矩阵的大小可以是动态的,也可以稍后重用代码。

for(int ii(0); ii < first dimension size; ++ii)
{
   for(int ll(0); ii < second dimension size; ++ll)
   {
     matrix[ii][ll] = value you want;
   }
}

这将使您的代码在此应用程序之外更具可扩展性和更有用性,并且可能没有用,或者可能有用。

如果它是一个矩阵 2X2,那么你可以传递一个浮点数组,然后循环遍历它。

例如

for(int x = 0;x<4;x++)
{
    matrix[0][x] = myarray[x];
}

如果你有一个C++11编译器,Luchian的版本是最好的。 这是一个适用于所有版本的C++:

struct matrix_holder { float matrix[2][2]; };
class Matrix : matrix_holder
{
    static matrix_holder pack(float a,float b,float c, float d)
    {
        matrix_holder h = { {{a, b}, {c, d}} };
        return h;
    }
public:
    Matrix(float a,float b,float c, float d) : matrix_holder(pack(a,b,c,d))
    {
    }
};

优化程序将内联帮助程序。