首页 > 代码库 > 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,智能指针
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。