日撸java_day31

今天开始写图的代码,本身java没怎么写过,异常处理这块又去别地学了一下,贴点东西来

1.矩阵对象的创建.
2.getRows 等: getter, setter 在 java 里面很常用. 主要是为了访问控制.
3.整数矩阵的加法、乘法.
4.Exception 的抛出与捕获机制.
5.用 this 调用其它的构造方法以减少冗余代码.
6.代码看起来多, 但矩阵运算我们以前写过.
7.把数据类型修改成 double, 获得 DoubleMatrix.java, 以后会很有用.
8.getIdentityMatrix: 单位矩阵.
9.resultMatrix.data[i][i]: 成员变量的访问权限: 在同一类里面是可以直接使用的.
 

package matrix;

import java.util.Arrays;

/**
 * ClassName: IntMatrix
 * Package: matrix
 * Description: Int matrix. For efficiency we do not define ObjectMatrix.
 *
 * @Author: luv_x_c
 * @Create: 2023/5/21 22:26
 */
public class IntMatrix {
    /**
     * The data.
     */
    int[][] data;

    /**
     * The first constructor
     *
     * @param paraRows    The number of rows.
     * @param paraColumns The number of columns.
     */
    public IntMatrix(int paraRows, int paraColumns) {
        data = new int[paraRows][paraColumns];
    }// Of the first constructor

    /**
     * The second constructor. Construct a copy of the given matrix.
     *
     * @param paraMatrix The given matrix.
     */
    public IntMatrix(int[][] paraMatrix) {
        data = new int[paraMatrix.length][paraMatrix[0].length];

        for (int i = 0; i < data.length; i++) {
            System.arraycopy(paraMatrix[i], 0, data[i], 0, data[0].length);
        }// Of for i
//        data=paraMatrix.clone();
    }// Of the second constructor

    /**
     * The third constructor. Construct a copy of the given matrix.
     *
     * @param paraMatrix The given matrix.
     */
    public IntMatrix(IntMatrix paraMatrix) {
        this(paraMatrix.getData());
    }//of  the third constructor

    /**
     * Get identity matrix. The values at the diagonal are all 1.
     *
     * @param paraRows The given rows.
     */
    public static IntMatrix getIdentityMatrix(int paraRows) {
        IntMatrix resultMatrix = new IntMatrix(paraRows, paraRows);
        for (int i = 0; i < paraRows; i++) {
            //According to access control, resultMatrix.data can be visited directly
            resultMatrix.data[i][i] = 1;
        }// Of for i
        return resultMatrix;
    }// Of getIdentityMatrix

    @Override
    public String toString() {
        return Arrays.deepToString(data);
    }// Of toString

    /**
     * Get my data. Warning, the reference to the data instead of a copy the data is returned.
     *
     * @return The data matrix.
     */
    private int[][] getData() {
        return data;
    }// Of getData

    /**
     * Getter.
     *
     * @return The number of rows.
     */
    private int gerRows() {
        return data.length;
    }// Of getRows

    /**
     * Getter.
     *
     * @return The number of columns.
     */
    private int getColumns() {
        return data[0].length;
    }// Of getColumns

    /**
     * Set one the value of one element.
     *
     * @param paraRow    The row of the element.
     * @param paraColumn The column of the element.
     * @param paraValue  The new value.
     */
    private void setValue(int paraRow, int paraColumn, int paraValue) {
        data[paraRow][paraColumn] = paraValue;
    }// Of setValue

    /**
     * Get the value of one element.
     *
     * @param paraRow    The row of the element.
     * @param paraColumn The column of the element.
     * @return The value.
     */
    private int getValue(int paraRow, int paraColumn) {
        return data[paraRow][paraColumn];
    }//Of getValue

    /**
     * Add another matrix to me.
     *
     * @param paraMatrix The other matrix.
     */
    public void add(IntMatrix paraMatrix) throws Exception {
        if (paraMatrix == null) {
            throw new Exception("Cannot add matrices. One of the matrix is null. ");
        }
        // Step1. Get the data of the given matrix.
        int[][] tempData = paraMatrix.getData();

        // Step2. Size check
        if (data.length != tempData.length) {
            throw new Exception("Cannot add matrices. Rows not match: " + data.length + " vs. " + tempData.length + ".");
        }// Of if
        if (data[0].length != tempData[0].length) {
            throw new Exception("Cannot add matrices. Columns not match: " + data[0].length + " vs. " + tempData[0].length + ".");
        }// Of if


        // Step3. Add to me.
        for (int i = 0; i < data.length; i++) {
            for (int j = 0; j < data[0].length; j++) {
                data[i][j] += tempData[i][j];
            }// Of for j
        } // Of for i
    }// Of add

    /**
     * Add two existing matrices.
     *
     * @param paraMatrix1 The first matrix.
     * @param paraMatrix2 The second matrix.
     * @return A new matrix.
     */
    public static IntMatrix add(IntMatrix paraMatrix1, IntMatrix paraMatrix2) throws Exception {
        // Step1. Clone the first matrix.
        IntMatrix resultMatrix = new IntMatrix(paraMatrix1);
        //IntMatrix resultMatrix=paraMatrix1.clone();

        // Step2. Add the second one.
        resultMatrix.add(paraMatrix2);

        return resultMatrix;
    }// Of add

    /**
     * Multiply two existing matrices.
     *
     * @param paraMatrix1 The first matrix.
     * @param paraMatrix2 The second matrix.
     * @return A new matrix.
     */
    public static IntMatrix multiply(IntMatrix paraMatrix1, IntMatrix paraMatrix2) throws Exception {
        // Step1. Check size.
        int[][] tempData1 = paraMatrix1.getData();
        int[][] tempData2 = paraMatrix2.getData();
        if (tempData1[0].length != tempData2.length) {
            throw new Exception("Cannot multiply matrices: " + tempData1[0].length + " vs. " + tempData2.length + ".");
        }// Of if

        // Step2. Allocate space.
        int[][] resultData = new int[tempData1.length][tempData2[0].length];

        // Step3. Multiply
        for (int i = 0; i < tempData1.length; i++) {
            for (int j = 0; j < tempData2[0].length; j++) {
                for (int k = 0; k < tempData1[0].length; k++) {
                    resultData[i][j] += tempData1[i][k] * tempData2[k][j];
                }// Of for k
            }// Of for j
        }// Of for i

        // Step4. Construct the matrix object.
        IntMatrix resultMatrix = new IntMatrix(resultData);

        return resultMatrix;
    }// Of multiply

    /**
     * The entrance of the program.
     *
     * @param args Not used now.
     */
    public static void main(String[] args) {
        IntMatrix tempMatrix1 = new IntMatrix(3, 3);
        tempMatrix1.setValue(0, 1, 1);
        tempMatrix1.setValue(1, 0, 1);
        tempMatrix1.setValue(1, 2, 1);
        tempMatrix1.setValue(2, 1, 1);
        System.out.println("The original matrix is: " + tempMatrix1);

        IntMatrix tempMatrix2 = null;
        try {
            tempMatrix2 = IntMatrix.multiply(tempMatrix1, tempMatrix1);
        } catch (Exception e) {
            System.out.println(e);
        } // Of try
        System.out.println("The square matrix is: " + tempMatrix2);

        IntMatrix tempMatrix3 = new IntMatrix(tempMatrix2);
        try {
            tempMatrix3.add(tempMatrix1);
        } catch (Exception e) {
            System.out.println(e);
        } // Of try
        System.out.println("The connectivity matrix is: " + tempMatrix3);
        
        try {
            tempMatrix3.add(null);
        } catch (Exception e) {
            System.out.println(e);
        }
    }// Of main
}// Of class matrix

 

add除了判断行列,加了个null异常抛出,稍微理解了一点这个异常处理

异常处理的方式

过程1:“抛”
 >"自动抛" : 程序在执行的过程当中,一旦出现异常,就会在出现异常的代码处,自动生成对应异常类的对象,并将此对象抛出。

 >"手动抛" :程序在执行的过程当中,不满足指定条件的情况下,我们主动的使用"throw + 异常类的对象"方式抛出异常对象。


过程2:“抓”
    狭义上讲:try-catch的方式捕获异常,并处理。
    广义上讲:把“抓”理解为“处理”。则此时对应着异常处理的两种方式:① try-catch-finally ② throws

捕获异常语法如下:

try{
	......	//可能产生异常的代码
}
catch( 异常类型1 e ){
	......	//当产生异常类型1型异常时的处置措施
}
catch( 异常类型2 e ){
	...... 	//当产生异常类型2型异常时的处置措施
}  
finally{
	...... //无论是否发生异常,都无条件执行的语句
} 


public void test() throws 异常类型1,异常类型2,.. {
    //可能存在编译时异常
}

         

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值