码迷,mamicode.com
首页 > 其他好文 > 详细

count_if,智能指针

时间:2014-11-19 12:11:38      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   使用   sp   bs   c++   c   nbsp   

//count_if       //c++11

vector<int> vec

int cnt = count_if(vec.begin(),vec.end(),[](int i){return i >=80;});

 

 

6.常用的智能指针:

a)      Boost库提供了scoped_ptr/shared_ptr

b)     C++11内置了unique_ptr/shared_ptr

c)      C++98提供auto_ptr已经被废弃

7.Integer(int i)提供了一种从int转化到Integer的能力,而operator int() 提供了从Integer转化成int的能力。

a)      禁用第一种能力,使用explicit关键字。

b)     禁用第二种,直接删除函数即可

6.IO流实现了operator bool() 转化符。

7.[](int i){return i >= 90;} 叫做lamdba表达式,是一种匿名函数。(C++11特性)

 

count_if,智能指针

标签:io   ar   os   使用   sp   bs   c++   c   nbsp   

原文地址:http://www.cnblogs.com/hzqin/p/4107721.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!