swift-06 函数

image.png

image.png
// 函数  入参  Int   返回值 Int
func add(a:Int,b:Int) -> Int
{
    return a+b
}
// 无参  无返回值
func voidFunc()
{
    print("调用空函数")
}

你可能感兴趣的:(swift-06 函数)