如何从 Swift中的函数返回一个Int范围?我搜索了Swift 2.1文档,网络,SO,并尝试: func myfunc() - Range { // }func myfunc() - ( Int ... Int ) { // }func myfunc() - Range Int { // } ……还有很多人…… 抱歉在这里
func myfunc() -> Range { // } func myfunc() -> ( Int ... Int ) { // } func myfunc() -> Range< Int > { // }
……还有很多人……
抱歉在这里骨头,并提前感谢!
你的第三个是正确的.这编译和工作,例如:func oneTo10() -> Range<Int> { return 1...10 }