0
package homework3;

public class DoubleMatrix
{

   private double[][] doubMatrix;

   public DoubleMatrix (int row, int col)
   {
    if(row > 0 & col > 0)
    {
        makeDoubMatrix(1,1);
    }
    else
    {
        row = 1;
        col = 1;
    }

}
public DoubleMatrix(double[][] tempArray)
{   
    int k = tempArray.length;
    if(tempArray != null)
    {


        for(int i = 0; i < tempArray.length;i++)
        {
            if(k== tempArray[i].length)
            {


            }

        }   
     }
    else
    {
        makeDoubMatrix(1,1);
    }

}


}

这就是我应该开始我的任务的内容:编写一个名为 DoubleMatrix 的类,在其中声明一个 2-dim。双精度数组(我称之为 doubMatrix)作为私有实例变量。包括以下构造函数或实例方法(此处没有静态方法):

  • 构造函数,第一个维度为 int(确保大于 0,否则设置为 1),第二维为 int(确保大于 0,否则设置为 1)并调用 makeDoubMatrix 私有实例方法(见下文)
  • 另一个具有 2-dim 的构造函数。双精度数组作为其参数(如果参数不为空并且如果每一行与其他行具有相同的长度,则分配),否则,使用 1、1 调用 makeDoubMatrix)

有人可以检查我是否检查了第二个构造函数吗?另外,我在第二个 if 中省略了分配语句,因为我不知道要分配什么,谁能告诉我要分配什么,因为问题只说分配但没有说分配给什么值。

4

2 回答 2

2

您必须首先检查每一行,它们是否具有相同的长度。您可以维护一个boolean flag变量,只要false您看到当前行与下一行的长度不同,就可以将其设置为。

您可以尝试以下代码,并测试它是否有效:-

public DoubleMatrix(double[][] tempArray)
{   
    if(tempArray != null)
    {
        boolean flag = true;
        for(int i = 0; i < tempArray.length - 1;i++)
        {   
            // Check each row with the next row
            if(tempArray[i].length != tempArray[i + 1].length)
            {
                 // as you find the row length not equal, set flag and break
                 flag = false;
                 break;
            }
        }   
        if (flag) {
            doubleMatrix = tempArray;
        } else {
            makeDoubleMatrix(1,1);
        }
     } else {
        makeDoubleMatrix(1, 1);
     }
}
于 2012-10-27T04:53:43.090 回答
1
public DoubleMatrix(double[][] tempArray)
{   
    //Calling tempArray.length if tempArray is null will get you an error
    if(tempArray != null)
    {


        for(int i = 0; i < tempArray.length;i++)
        {
            for(int j=0;j<tempArray[i].length;j++)
               {
                      doubleMatrx[i][j] = tempArray[i][j];
               }

        }   
     }
    else
    {
        makeDoubMatrix(1,1);
    }

}

同样在Java中,二维数组的每行总是有相同数量的列,因为它的声明类似于int bob[][] = new int[a][b]

于 2012-10-27T04:13:41.387 回答