如何在C ++ 11的lambda函数参数中不使用具体类型?
C++11 requires that lambda function parameters be declared with concrete types. This is sometimes annoying. auto is really nice, especially when the type is complex like std::vector<std::string>...