Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
メソッドで返すとき、それはあなたが返したいタイプになることを私は知っています。
public int numbers(){ return number; } public String sentence(){ return sentence; }
しかし、それがの場合Cell[]、リターンタイプはどうなりますか?Cell[]メソッドから全体を返したい。
Cell[]
多分私は何かが足りないのですが、なぜですか
public Cell[] cells(){ return cells; }