QT-Lambda表达式

lambda表达式构成

函数对象参数mutable -> 返回值 {函数体}

[capture](parameter) mutable -> return-type
{
    statement
}

具体示例