다음을 통해 공유


vector::emplace

벡터 지정 된 위치에 현재 위치에서 구성 요소를 삽입 합니다.

iterator emplace(
   const_iterator _Where,
   Type&& _Val
);

매개 변수

Parameter

설명

_Where

위치는 vector Class 첫 번째 요소를 삽입 합니다.

_Val

값을 삽입 하는 요소는 vector.

반환 값

새 요소가 된 삽입 위치에 위치를 가리키는 반복기를 반환 된 vector.

설명

삽입 작업 비쌉니다, 볼 수 있습니다 벡터 클래스 토론에 대 한 vector 성능.

예제

// vector_emplace.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;   
   vector <int> v1;
   vector <int>::iterator Iter;
   
   v1.push_back( 10 );
   v1.push_back( 20 );
   v1.push_back( 30 );

   cout << "v1 =" ;
   for ( Iter = v1.begin( ) ; Iter != v1.end( ) ; Iter++ )
      cout << " " << *Iter;
   cout << endl;

// initialize a vector of vectors by moving v1
   vector < vector <int> > vv1;

   vv1.emplace( vv1.begin(), move( v1 ) );
   if ( vv1.size( ) != 0 && vv1[0].size( ) != 0 )
      {
      cout << "vv1[0] =";
      for (Iter = vv1[0].begin( ); Iter != vv1[0].end( ); Iter++ )
         cout << " " << *Iter;
      cout << endl;
      }
}
  

요구 사항

헤더: <vector>

네임 스페이스: std

참고 항목

참조

vector Class

표준 템플릿 라이브러리