source

Swift: 스위치 문의 테스트 클래스 유형

gigabyte 2023. 4. 19. 23:08
반응형

Swift: 스위치 문의 테스트 클래스 유형

Swift에서는 'is'를 사용하여 객체의 클래스 유형을 확인할 수 있습니다.이걸 어떻게 '스위치' 블록에 통합할 수 있을까요?

불가능할 것 같아서 어떻게 하면 좋을까요?

반드시 사용할 수 있습니다.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")
    }
}

"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)")
}

데모 링크

값이 없는 경우 임의의 객체:

스위프트 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

저는 다음 구문을 좋아합니다.

switch thing {
case _ as Int: print("thing is Int")
case _ as Double: print("thing is Double")
}

다음과 같이 기능을 빠르게 확장할 수 있습니다.

switch thing {
case let myInt as Int: print("\(myInt) is Int")
case _ as Double: print("thing is Double")
}

언급URL : https://stackoverflow.com/questions/25724527/swift-test-class-type-in-switch-statement

반응형