Avatar
var a: Int! = 1 func x(_ i: Int) { print(type(of: i)) } func x(_ o: Int?) { print(type(of: o)) // こっちが呼ばれる } x(a) これでもOptional勝ちだった