博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
向前插入迭代器
阅读量:6841 次
发布时间:2019-06-26

本文共 610 字,大约阅读时间需要 2 分钟。

* *向前插入迭代器,是架构在具有push_front向前插入函数的序列容器(比如deque list)上的输出迭代器,可以利用 *改迭代器提供的“++”,“*”,“=”以“*fii++=9;”的类似的形式完成容器元素的赋值。 * *其中“*”和"++"只是简单的返回对象本身:“*this”,所以必须和“=”操作一起使用才有意义。 **/#include "stdafx.h"#include 
#include
#include
#include
using namespace std;int _tmain(int argc, _TCHAR* argv[]){ deque
v; for(int i=0;i<5;++i){ v.push_back(i); } front_insert_iterator
>fii(v); copy(v.begin(),v.end(),ostream_iterator
(cout," ")); cout<
(cout," ")); return 0;}

转载地址:http://ihkul.baihongyu.com/

你可能感兴趣的文章
linux 系统管理之磁盘阵列RAID和压缩命令
查看>>
Widgets must be created in the GUI thread
查看>>
JQuery Highcharts图表控件使用说明
查看>>
python基础教程
查看>>
linux命令:function脚本编程之函数
查看>>
Linux性能监控之CPU利用率
查看>>
第九节 VMware View 6.0 菜鸟入门 连接服务器的安装和部署
查看>>
spring容器加载完毕做一件事情(利用ContextRefreshedEvent事件)
查看>>
C# 文件操作详解(二)---------FileInfo类
查看>>
Windows Server 2012系列---文件服务器资源管理器FSRM(2)
查看>>
JPA注解
查看>>
LogMiner详细讲解
查看>>
03.17基本控件的使用
查看>>
ElementaryOS 安装PhpStorm
查看>>
nutch与起点R3集成之笔记(二)
查看>>
ThinkPHP 统计查询
查看>>
厚黑学
查看>>
C++异常处理机制之一
查看>>
CentOS 5.2安装
查看>>
js prototype的理解
查看>>