Item 31: Avoid default capture modes.
Item 32: Use init capture to move objects into closures.
Item 33: Use decltype on auto&& parameters to std::forward them.
Item 34: Prefer lambdas to std::bind.
这章讲lambda的坑,以及bind的坑。lambda的坑主要在于与同一scope中的数据在不同capture mode下进行交互产生的。比如capture by reference吧,你得小心dangling reference。嗯,是的,以前主要需要注意dangling pointer,现在dangling reference已经在很多地方蔓延了。
bind的坑比如:
1. 绑定一个表达式到参数,但是表达式是在bind被调用的时候就evaluate了。。。
2. 重载函数bind参数,乖乖把类型写好交给编译器。。。
然后当然是说lambda没有这些问题,大家尽量用lambda。。。
generic lambda也完全纳入了这章的写作范围。没有尖括号的模板,很好很强大,我觉得这是C++泛型将来的方向。。。
如果说lambda只是个简单的语法糖,有点太小看它了。不过lambda写复杂了可读性实在是个问题。。。