我正在从一本书中学习 c#,作为练习的一部分,我必须自己编写代码。要做的一件事是将双精度数组传递给将进一步处理它的构造函数重载方法之一。问题是我不知道该怎么做。
这是完整的代码(直到现在):
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace assignment01v01
{
public class Matrix
{
int row_matrix; //number of rows for matrix
int column_matrix; //number of colums for matrix
int[,] matrix;
public Matrix() //set matrix size to 0*0
{
matrix = new int[0, 0];
Console.WriteLine("Contructor which sets matrix size to 0*0 executed.\n");
}
public Matrix(int quadratic_size) //create quadratic matrix according to parameters passed to this constructor
{
row_matrix = column_matrix = quadratic_size;
matrix = new int[row_matrix, column_matrix];
Console.WriteLine("Contructor which sets matrix size to quadratic size {0}*{1} executed.\n", row_matrix, column_matrix);
}
public Matrix(int row, int column) //create n*m matrix according to parameters passed to this constructor
{
row_matrix = row;
column_matrix = column;
matrix = new int[row_matrix, column_matrix];
Console.WriteLine("Contructor which sets matrix size {0}*{1} executed.\n", row_matrix, column_matrix);
}
public Matrix(int [,] double_array) //create n*m matrix and fill it with data passed to this constructor
{
matrix = double_array;
row_matrix = matrix.GetLength(0);
column_matrix = matrix.GetLength(1);
}
public int countRows()
{
return row_matrix;
}
public int countColumns()
{
return column_matrix;
}
public float readElement(int row, int colummn)
{
return matrix[row, colummn];
}
}
class Program
{
static void Main(string[] args)
{
Matrix mat01 = new Matrix();
Matrix mat02 = new Matrix(3);
Matrix mat03 = new Matrix(2,3);
//Here comes the problem, how should I do this?
Matrix mat04 = new Matrix ( [2,3] {{ 1, 2 }, { 3, 4 }, { 5, 6 }});
//int [,] test = new int [2,3] { { 1, 2, 3 }, { 4, 5, 6 } };
}
}
}
困扰我的部分代码标有“//问题来了,我该怎么做?”。
欢迎任何建议。