名前空間
変種
操作

std::front_insert_iterator

提供: cppreference.com
< cpp‎ | iterator

 
 
イテレータライブラリ
イテレータプリミティブ
イテレータアダプタ
ストリームイテレータ
イテレータ操作
(C++11)
(C++11)
範囲アクセス
(C++11)(C++14)
(C++11)(C++14)
(C++14)(C++14)
(C++14)(C++14)
コンテナアクセス
(C++17)
(C++17)
(C++17)
 
std::front_insert_iterator
メンバ関数
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
ヘッダ <iterator> で定義
template< class Container >

class front_insert_iterator : public std::iterator< std::output_iterator_tag,

                                                   void,void,void,void >
std::front_insert_iteratorイテレータは(間接参照するか否かにかかわらず)に割り当てられるたびに、コンテナのpush_front()メンバ関数を使用して、それを構成しているため、コンテナに要素を先頭に追加し、出力イテレータです。 std::front_insert_iteratorをインクリメントすると、操作は行われません.
Original:
std::front_insert_iterator is an output iterator that prepends elements to a container for which it was constructed, using the container's push_front() member function whenever the iterator (whether dereferenced or not) is assigned to. Incrementing the std::front_insert_iterator is a no-op.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

目次

[編集] メンバータイプ

メンバー·タイプ
Original:
Member type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definition
container_type Container

[編集] メンバ関数

テンプレート:cpp/iterator/inserter/dsc operator++
新しいfront_insert_iteratorを構築します
Original:
constructs a new front_insert_iterator
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(パブリックメンバ関数) [edit]
関連付けられたコンテナにオブジェクトを挿入します
Original:
inserts an object into the associated container
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(パブリックメンバ関数) [edit]
no-op
(パブリックメンバ関数) [edit]

[編集] メンバーオブジェクト

メンバー名
Original:
Member name
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definition
container (保護されています)
タイプContainer*のポインタ
Original:
a pointer of type Container*
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

std::iterator から継承

Member types

メンバー·タイプ
Original:
Member type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Definition
value_type void
difference_type void
pointer void
reference void
iterator_category std::output_iterator_tag

[編集]

#include <vector>
#include <deque>
#include <iostream>
#include <iterator>
#include <algorithm>
int main()
{
    std::vector<int> v{1,2,3,4,5};
    std::deque<int> d;
    std::copy(v.begin(), v.end(),
              std::front_insert_iterator<std::deque<int>>(d)); // or std::front_inserter(d)
    for(int n : d)
        std::cout << n << ' ';
    std::cout << '\n';
}

出力:

5 4 3 2 1

[編集] 参照

引数から推定した型の std::front_insert_iterator を作成します
(関数テンプレート) [edit]
コンテナの末尾に挿入するためのイテレータアダプタ
(クラステンプレート) [edit]
コンテナに挿入するためのイテレータアダプタ
(クラステンプレート) [edit]