swap (<deque>)

交换两个 deques 的元素。

void swap(
   deque<Type, Allocator>& _Left,
   deque<Type, Allocator>& _Right,
);

参数

  • _Left
    deque 类型的对象。

  • _Right
    deque 类型的对象。

示例

说明

请参见 deque::swap中的示例。

要求

标头: <deque>

命名空间: std

请参见

参考

标准模板库