Return Value 戻り値
The last element of the collection if the collection has one or more elements; otherwise, nil
.
コレクションが1つ以上の要素を持つならばコレクションの最後の要素;そうでなければnil
。
Availability
Technology
The last element of the collection if the collection has one or more elements; otherwise, nil
.
コレクションが1つ以上の要素を持つならばコレクションの最後の要素;そうでなければnil
。
You can use pop
to remove the last element of a collection that might be empty. The remove
method must be used only on a nonempty collection.
あなたはpop
を使って、空であるかもしれないコレクションの最後の要素を削除できます。remove
メソッドは、空でないコレクションでのみ使われるべきです。
Complexity: O(1) 計算量:O(1)