/// 形
[capture list](parameter list)->return type{function body}
/// parameter list and return type can be omitted
[]{ return 1}
一般用于只有一处要使用的地方,例如sort函数的排序方法,如果需要多处使用,应该好好定义一个函数
2024-02-15 17:15:40
/// 形
[capture list](parameter list)->return type{function body}
/// parameter list and return type can be omitted
[]{ return 1}
一般用于只有一处要使用的地方,例如sort函数的排序方法,如果需要多处使用,应该好好定义一个函数