溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

java實(shí)現(xiàn)二維數(shù)組轉(zhuǎn)置的方法示例

發(fā)布時(shí)間:2020-09-27 18:42:52 來(lái)源:腳本之家 閱讀:261 作者:acwei29 欄目:編程語(yǔ)言

本文實(shí)例講述了java實(shí)現(xiàn)二維數(shù)組轉(zhuǎn)置的方法。分享給大家供大家參考,具體如下:

這里在文件中創(chuàng)建Test2、Exchange、Out三個(gè)類

在Exchange類中編寫exchange()方法,在方法中創(chuàng)建兩個(gè)數(shù)組arraryA、arraryB,arraryB[j][i]=arraryA[i][j]實(shí)現(xiàn)數(shù)組的轉(zhuǎn)置。

在Out類中編寫out()方法,在方法中用for循環(huán)遍歷實(shí)現(xiàn)輸出。

具體代碼如下:

package Tsets;
import java.util.*;
public class Test2
{
    public static void main(String args[])
    {
        Out T1=new Out();
        Out T2=new Out();
        Exchange E=new Exchange();
        System.out.println("億速云測(cè)試結(jié)果:");
        System.out.println("轉(zhuǎn)置前的二維數(shù)組如下:");
        T1.out(E.arraryA);
        E.exchange();
        System.out.println("轉(zhuǎn)置后的二維數(shù)組如下:");
        T2.out(E.arraryB);
    }
}
//數(shù)組轉(zhuǎn)置
class Exchange
{
    int arraryA[][]={{11,12,13,14,15},{21,22,23,24,25},{31,32,33,34,35},{41,42,43,44,45},{51,52,53,54,55}};
    int arraryB[][] = new int[arraryA[0].length][arraryA.length];
    public void exchange ()
    {
        for(int i=0;i<arraryA.length;i++)
        {
            for(int j=0;j<arraryA[i].length;j++)
            {
                arraryB[j][i]=arraryA[i][j];
            }
        }
    }
}
//數(shù)字循環(huán)遍歷輸出
class Out
{
    public void out(int c[][])
    {
        for (int i=0;i<c.length ;i++ )
        {
            for (int j=0;j<c[i].length ;j++ )
            {
                System.out.print(c[i][j]+" ");
            }
            System.out.println();
        }
    }
}

運(yùn)行結(jié)果:

java實(shí)現(xiàn)二維數(shù)組轉(zhuǎn)置的方法示例

更多關(guān)于java相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Java數(shù)組操作技巧總結(jié)》、《Java字符與字符串操作技巧總結(jié)》、《Java數(shù)學(xué)運(yùn)算技巧總結(jié)》、《Java數(shù)據(jù)結(jié)構(gòu)與算法教程》及《Java操作DOM節(jié)點(diǎn)技巧總結(jié)》

希望本文所述對(duì)大家java程序設(shè)計(jì)有所幫助。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI