IVector<T>.GetAt(UInt32) 方法

定义

返回向量中指定索引处的项。

public:
 T GetAt(unsigned int index);
T GetAt(uint32_t const& index);
public T GetAt(uint index);
Public Function GetAt (index As UInteger) As T

参数

index
UInt32

unsigned int

uint32_t

该项的从零开始的索引。

返回

T

指定索引处的项。

注解

使用 .NET 编程时,此接口是隐藏的,应使用 System.Collections.Generic.IList<T> 接口。

如果索引在范围外,视图将引发异常。

C++/WinRT 如果索引在范围外,矢量将引发 hresult_out_of_bounds 异常。

C++/CX 如果索引在范围外,矢量将引发 OutOfBoundsException 异常。

适用于

另请参阅