在函数的参数名前,开发者还可以再为其添加一个参数名称作为外部参数名,示例如下:
func func1(count param:Int ,count2 param2:Int)->Int? {
//内部依然使用param
guard(param>0)else{
return nil
}
return param
}
//外部调用使用count
func1(count: 0,count2: 0)
func1(count: 1,count2: 1)
在函数的参数名前,开发者还可以再为其添加一个参数名称作为外部参数名,示例如下:
func func1(count param:Int ,count2 param2:Int)->Int? {
//内部依然使用param
guard(param>0)else{
return nil
}
return param
}
//外部调用使用count
func1(count: 0,count2: 0)
func1(count: 1,count2: 1)