第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Java:如何制作特定對(duì)象的二維數(shù)組

Java:如何制作特定對(duì)象的二維數(shù)組

慕娘9325324 2023-04-26 15:05:42
我在 Java 中有以下類:public class Cell {    private int x;    private int y;    private int g;    private int h;    public Cell(int x, int y, int g, int h) {       this.x = x;       this.y = y;       this.g = g;       this.h = h;    }}我想制作一個(gè)二維數(shù)組,其中數(shù)組的每個(gè)元素都是 Cell 類型。但是,我不確定執(zhí)行此操作的最佳方法是什么。任何見解表示贊賞。
查看完整描述

2 回答

?
白衣非少年

TA貢獻(xiàn)1155條經(jīng)驗(yàn) 獲得超0個(gè)贊

Cell[][]這是。但是請(qǐng)注意,這與二維數(shù)組略有不同。它實(shí)際上是一個(gè)一維數(shù)組,其元素都具有類型Cell[]。這意味著您的陣列不必是“矩形”。


Cell[][] cells = new Cell[10][10];做你所期望的,并創(chuàng)建一個(gè) 10x10 的矩形陣列。


但是,您可以執(zhí)行以下操作:


Cell[][] cells = new Cell[10][];

cells[0] = new Cell[1];

cells[1] = new Cell[1000];

...


cells[1][5] = 1;  // allowed, since cells[1] is a Cell[] of size 1000

cells[0][5] = 1;  // throws ArrayIndexOutOfBoundsException, since cells[0] has size 1

例如,如果您嘗試表示三角形數(shù)據(jù)結(jié)構(gòu)(例如帕斯卡三角形),這會(huì)有所幫助。


查看完整回答
反對(duì) 回復(fù) 2023-04-26
?
米琪卡哇伊

TA貢獻(xiàn)1998條經(jīng)驗(yàn) 獲得超6個(gè)贊

實(shí)際上我認(rèn)為 Array 不會(huì)方便,固定大小等。也許在字段中使用帶有 Collections 的額外類會(huì)更符合 OOP 風(fēng)格和方便。



class Board {


    List<List<Cell>> hash;


    public Cell getCell(int x, int y) {

        // might be usefull to copy return value for immutability of hash

        return hash.get(x).get(y);

    }


    public void setCell(Cell cell, int x, int y) {

        this.hash.get(x).set(y, cell);

    }



}


查看完整回答
反對(duì) 回復(fù) 2023-04-26
  • 2 回答
  • 0 關(guān)注
  • 138 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)