- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
public int getLifeWidth() {
return cells == null ? 0 : cells.length;
}
public int getLifeHeight() {
return cells == null || cells.length == 0 || cells[0] == null ? 0 : cells[0].length;
}
private int _getLifeWidth() {
return cells.length;
}
private int _getLifeHeight() {
return cells[0].length;
}
No.