在 C/C++/Java/Go 中,我们使用 , 来分隔参数:(a int, b int)在 Objective C 中,我们使用 : 来表示参数::(int)a :(int)b在 Swift 中,我们必须同时使用 : 和 , :(a:int, b:int)冗余是必要的吗? 查看完整描述