deque::const_pointer

deque の [const] の要素へのポインターを提供する型。

typedef typename Allocator::const_pointer const_pointer;

解説

const_pointer が要素の値を変更することはできません。[反復子] は、一般には、deque の要素にアクセスします。

必要条件

ヘッダー: <deque>

名前空間: std

参照

関連項目

deque Class

標準テンプレート ライブラリ