gpt4 book ai didi

java - 具有自身数组的对象

转载 作者:行者123 更新时间:2023-11-29 03:22:47 25 4
gpt4 key购买 nike

我有这样一个类

public class Cell{    
static{
int x;
int y;
Cell[] cells = new Cell[10];
}
}

这是合法的还是正确的思考方式?让一个类包含一个自身的数组(这在 C 中是可能的)。

从设计的角度来思考这个问题是否正确?有一个 Cell 类然后一个 Cells 类会更好吗?

最佳答案

如果你的类要包含一个数组本身,它更可能看起来像这样:

public class Cell {    
private int x;
private int y;
private Cell[] cells;

// constructors, getters, setters, etc
...
}

关于java - 具有自身数组的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22676012/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com