看到新闻后很纠结,犹豫要不要跟进,因为最近几年都一直挺简单就是美。一、C++0x的新特性C++0x有着一系列新特性,以下3个我个人比较中意
1. lambda表达式
[](int x, int y) { return x + y; }
2. auto类型推导
auto plus = [](int x, int y) { return x + y; }
3. 串型初使化
vector
v={1,2,3,4,5}
上述三个特性的测试,gcc 4.5.2 下编译通过
- #include <vector>
-
#include <iostream>
-
#include <algorithm>
-
#include <iterator>
-
using namespace std;
-
-
ostream & operator <<(ostream &out, const vector<int> &numbers)
-
{
-
copy(numbers.begin(), numbers.end(), ostream_iterator<int>(out, " "));
-
return out;
-
}
-
int main(int argc, char *argv[])
-
{
-
vector<int> numbers = {1, 2, 3, 4, 5};
-
cout << numbers << endl;
-
-
transform(numbers.begin(), numbers.end(), numbers.begin(), [](int x) { return x *= 2; });
-
cout << numbers << endl;
-
-
auto increase = [](int x) {
-
return x+1;
-
};
-
transform(numbers.begin(), numbers.end(), numbers.begin(), increase);
-
cout << numbers << endl;
-
-
return 0;
-
}
存为main.cc 编译并运行
- $ g++ -std=c++0x main.cc && ./a.out
-
1 2 3 4 5
-
2 4 6 8 10
-
3 5 7 9 11
lambda的引入,大大增加了代码的灵活性。
另一个例子 boost::asio 与 C++0x二、C++0x的缺点1、编译速度慢,但至少比boost模拟要快。
2、代码移植性差。三、相关链接
阅读(247) | 评论(0) | 转发(0) |