标签: java arrays methods return cell
我知道返回时的方法就是你要返回的类型。
public int numbers(){ return number; } public String sentence(){ return sentence; }
但是,如果它是Cell[],那么返回类型是什么?我想从方法返回整个Cell[]。
Cell[]
答案 0 :(得分:2)
也许我错过了什么,但为什么不呢
public Cell[] cells(){ return cells; }