标签:swap amp div swa code 元组 使用 pre out
func swapTwoInts( a: inout Int, b: inout Int) { (a, b) = (b, a) } var x = 1 var y = 2swapTwoInts(a: &x, b: &y)x // 2y // 1
使用元组交换两个数据
原文地址:http://www.cnblogs.com/muzijie/p/6541792.html