func Match(pattern, name string) (matched bool, err error)https://golang.org/pkg/path/filepath/#Match为什么不必pattern有类型(如pattern string)?
1 回答
海绵宝宝撒
TA贡献1809条经验 获得超8个赞
根据https://tour.golang.org/basics/5:
当两个或多个连续的命名函数参数共享一个类型时,您可以省略除最后一个之外的所有类型。
在这个例子中,我们缩短了
x int, y int
到
x, y int
- 1 回答
- 0 关注
- 152 浏览
添加回答
举报
0/150
提交
取消