auto toNumber = [&](string const& s) -> unsigned {
...
}
[]:定义匿名函数
[&]:以引用形式捕获所有外部变量,也就是外部变量均可用
(string const &s) :匿名函数的参数
->:定义匿名函数
unsigned:函数返回值类型
{...}:函数实现体
原文链接:https://blog.csdn.net/huluwaaaa/article/details/103225311
auto toNumber = [&](string const& s) -> unsigned {
...
}
[]:定义匿名函数
[&]:以引用形式捕获所有外部变量,也就是外部变量均可用
(string const &s) :匿名函数的参数
->:定义匿名函数
unsigned:函数返回值类型
{...}:函数实现体
原文链接:https://blog.csdn.net/huluwaaaa/article/details/103225311