deque::const_pointer

提供双端队列的元素 const 的指针。

typedef typename Allocator::const_pointer const_pointer;

备注

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

要求

标头: <deque>

命名空间: std

请参见

参考

deque 类

标准模板库