답변:
당신은 절대적 is
으로 switch
블록 에서 사용할 수 있습니다 . Swift Programming Language의 "Any and AnyObject에 대한 유형 캐스팅"을 참조하십시오 ( Any
물론 이에 국한되지는 않음 ). 그들은 광범위한 예를 가지고 있습니다 :
for thing in things {
switch thing {
case 0 as Int:
println("zero as an Int")
case 0 as Double:
println("zero as a Double")
case let someInt as Int:
println("an integer value of \(someInt)")
case let someDouble as Double where someDouble > 0:
println("a positive double value of \(someDouble)")
// here it comes:
case is Double:
println("some other double value that I don't want to print")
case let someString as String:
println("a string value of \"\(someString)\"")
case let (x, y) as (Double, Double):
println("an (x, y) point at \(x), \(y)")
case let movie as Movie:
println("a movie called '\(movie.name)', dir. \(movie.director)")
default:
println("something else")
}
}
is
"그리고 그는 그것을 사용하지 않습니다. X)
case is Double
답변에서 볼 수 있습니다
"case is- case is Int, is string : "작업에 대한 예를 들어 , 여러 케이스를 함께 사용하여 유사한 오브젝트 유형에 대해 동일한 활동을 수행 할 수 있습니다. 여기서 "," 는 OR 연산자 처럼 작동하는 경우 유형을 구분합니다 .
switch value{
case is Int, is String:
if value is Int{
print("Integer::\(value)")
}else{
print("String::\(value)")
}
default:
print("\(value)")
}
if
것이 요점을 입증하는 가장 좋은 예는 아닙니다.
value
중 하나가 될 수있는 일이다 Int
, Float
, Double
, 및 치료 Float
와 Double
같은 방법.
값이없는 경우 객체 만 있습니다.
스위프트 4
func test(_ val:Any) {
switch val {
case is NSString:
print("it is NSString")
case is String:
print("it is a String")
case is Int:
print("it is int")
default:
print(val)
}
}
let str: NSString = "some nsstring value"
let i:Int=1
test(str)
// it is NSString
test(i)
// it is int
thing
어떤 스위치에서도 사용하지 않기 때문에case
여기서 사용하는 것은thing
무엇입니까? 나는 그것을 보지 못했습니다. 감사.