IDeque<TValue>.push_back(TValue) 方法
定义
将一个元素添加到容器末尾。Adds an element to the end of a container.
public:
void push_back(TValue _Val);
public void push_back (TValue _Val);
abstract member push_back : 'Value -> unit
Public Sub push_back (_Val As TValue)
参数
- _Val
- TValue
要追加到容器末尾的元素。The element to append to the end of the container.
注解
有关详细信息,请参阅 deque::p ush_back (STL/CLR) 。For more information, see deque::push_back (STL/CLR).