Instance Method インスタンスメソッド

object(at:)

Returns the object located at the specified index. 指定されたインデックスに位置するオブジェクトを返します。

Declaration 宣言

func object(at index: Int) -> Any

Parameters パラメータ

index

An index within the bounds of the array. この配列の境界内のインデックス。

Return Value 戻り値

The object located at index. indexに位置するオブジェクト。

Discussion 議論

If index is beyond the end of the array (that is, if index is greater than or equal to the value returned by count), an rangeException is raised. indexが配列の終わりを越えるならば(すなわち、indexcountによって返される値と同等かそれより大きいならば)、rangeExceptionが引き起こされます。

See Also 参照

Querying an Array 配列に問い合わせる