front_insert_iterator::operator*
取消引用返回它所解决的元素插入的迭代器。
front_insert_iterator<Container>& operator*( );
返回值
成员函数返回解决的元素的值。
备注
用于实现迭代器输出 *Iter 表达式为 值。 如果 Iter 为解决在序列的元素的迭代器,则 *Iter 为 值 值用替换元素,不更改元素的总数序列中。
示例
// front_insert_iterator_deref.cpp
// compile with: /EHsc
#include <iterator>
#include <list>
#include <iostream>
int main( )
{
using namespace std;
int i;
list <int>::iterator L_Iter;
list<int> L;
for ( i = -1 ; i < 9 ; ++i )
{
L.push_back ( 2 * i );
}
cout << "The list L is:\n ( ";
for ( L_Iter = L.begin( ) ; L_Iter != L.end( ); L_Iter++)
cout << *L_Iter << " ";
cout << ")." << endl;
front_insert_iterator< list < int> > Iter(L);
*Iter = 20;
// Alternatively, you may use
front_inserter ( L ) = 30;
cout << "After the front insertions, the list L is:\n ( ";
for ( L_Iter = L.begin( ) ; L_Iter != L.end( ); L_Iter++)
cout << *L_Iter << " ";
cout << ")." << endl;
}
要求
头文件: <iterator>
命名空间: std