IDeque<TValue>.Item[Int32] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定容器中位於指示位置的項目。
public:
property TValue default[int] { TValue get(int _Pos); void set(int _Pos, TValue value); };
public TValue this[int _Pos] { get; set; }
member this.Item(int) : 'Value with get, set
Default Public Property Item(_Pos As Integer) As TValue
參數
- _Pos
- Int32
要取得或設定之項目的位置。
屬性值
TValue
位於指示位置的項目。
備註
如需詳細資訊,請參閱 deque::operator (STL/CLR) 。