在Swift中使用函数参数名称

前端之家收集整理的这篇文章主要介绍了在Swift中使用函数参数名称前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
调用方法时,使用 Swift参数名称,除了第一个参数.为什么不使用名字?

使用Swift手册中的变体;

var count2: Int = 0
func incrementBy2(amount: Int,numberOfTimes times: Int) {
count2 += amount * times}

这将工作;

incrementBy2(2,numberOfTimes: 7)

然而,这给了我“无限参数标签数量调用

incrementBy2(amount: 2,numberOfTimes: 7)

在这里有一个理由,还是它是“只是它的方式”的东西之一?

这是遵循Objective-C所使用的约定,其中第一个参数的名称方法名称相结合.以下是一个例子:
- (void)incrementByAmount:(NSInteger)amount
            numberOfTimes:(NSInteger)times
{
    // stuff
}

您可以调用以下方法

[self incrementByAmount:2 numberOfTimes:7];

通过将参数的名称并入到方法名称中,阅读更加自然.在Swift中,您可以实现与以下相同的操作:

func incrementByAmount(amount: Int,numberOfTimes: Int) {
    // same stuff in Swift
}

调用方法如:

incrementByAmount(2,numberOfTimes: 7)

如果你不想使用这个约定,Swift可以让你更加明确,并定义单独的内部和外部参数名称,如下所示:

func incrementByAmount(incrementBy amount: Int,numberOfTimes: Int) {
    // same stuff in Swift
    // access `amount` at this scope.
}

你可以这样调用方法

incrementByAmount(incrementBy: 2,numberOfTimes: 7)
原文链接:https://www.f2er.com/swift/319671.html

猜你在找的Swift相关文章