deque::const_pointer

提供指针对、向量、双端队列的一个 const 元素的类型。

typedef typename Allocator::const_pointer const_pointer;

备注

类型 const_pointer 不能用于修改元素的值。迭代器 通常用于访问、向量、双端队列元素。

要求

标头: <deque>

命名空间: std

请参见

参考

deque Class

标准模板库