0
let data = ["1", "2", 3, 4, 5];
var m: Int = data[3] as! Int;
error: MyPlayground.playground:238:12: error: heterogeneous collection literal could only be inferred to '[Any]'; add explicit type annotation if this is intentional
let data = ["1", "2", 3, 4, 5];
^~~~~~~~~~~~~~~~~~~ as [Any]스위프트 4의 이기종 어레이에서 어떻게 캐스팅합니까?
감사의 말, 다니엘;). –