首页 > 代码库 > count_if,智能指针

count_if,智能指针

//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,智能指针