-
-
一只小马甲甲
2021-04-19
swift中 运算符的本质是 函数.
-
截图
0赞 · 0采集
-
-
措言
2017-06-12
- import UIKit
let score1 = (chinese: 90, math: 95)
let score2 = (chinese: 90, math: 100)
let score3 = (chinese: 100, math: 90)
fun printScore(chinese: Int, math: Int){
print("Chinese score: \(chinese), math score: \(math)")
}
//printScore(score1)
printScore(chinese: score1.chinese, math: score1.math)
-
截图
0赞 · 0采集
-
-
措言
2017-06-12
- import UIKit
let score1 = (chinese: 90, math: 95)
let score2 = (chinese: 90, math: 100)
let score3 = (chinese: 100, math: 90)
func < (t1: (Int, Int), t2: (Int, Int)) -> Bool {
if t1.1 != t2.1 {
return t1.1 < t2.1
}
return t1.0 < t2.0
}
score1 < score2 true
score3 < score2 true
-
截图
0赞 · 0采集
-
-
ichang
2016-11-30
- 元组变化
-
截图
0赞 · 0采集
-
-
ichang
2016-11-29
- 定义一个小于号
-
截图
0赞 · 0采集
-
-
ichang
2016-11-29
- swift 元组
-
截图
0赞 · 0采集
-
-
你爱我呗
2016-11-25
- 重载运算符,元组比较
-
截图
0赞 · 1采集
-
-
邪文
2016-11-15
- 运算符重载:
func <(t1:(Int, Int), t2:(Int, Int)) -> Bool {}
-
截图
0赞 · 0采集