
C++标准程序库(第二版)
seamanj
这个作者很懒,什么都没留下…
展开
-
lambda
#include #include std::function returnLambda() { return [](int x, int y) { return x*y; }; } int main() { auto lf = returnLambda(); std::cout << lf(6, 7) << std::endl; } 输出结果:42 l原创 2016-02-06 23:35:02 · 599 阅读 · 0 评论 -
regex
The regex match and search interface //main.cpp #include #include using namespace std; void out(bool b) { cout << (b ? "found" : "not found") << endl; } int main() { // find XML/HTML-tagged原创 2016-02-07 00:40:18 · 820 阅读 · 0 评论