Swift类型转换浅析

写在前面

类型转换在很多编程语言中都会用到,比如在Objective-C中(如果你恰好用它😉),你肯定经常写下面这种代码:

id value;
NSDictionary *dic = (NSDictionary *)value;

当然,这段代码很莫名其妙,这里只是举个简单的例子。在Swift中,类型转换(Type Casting)的实现稍微有点不同。在Swift中,主要通过isas两个运算符来检查一个对象是不是属于某个类或者把一个对象转成某种类。这里主要针对指针类,对于值类可以通过如下方式进行转换:

let hourlyRate = 19.5
let hoursWorked = 10
let totalCost = hourlyRate * Double(hoursWorked)

这里hoursWorked本来编译器会自动推断为Int类型,通过Double()转换之后就变成了Double类型。

先建一个类体系

首先建一个叫MediaItem的基类,它有一个name属性:

class MediaItem: NSObject {

    var name: String
    init(name: String) {
        self.name = name
    }
}

再建两个子类,MovieSong,分别增加一个director属性和artist属性:

class Movie: MediaItem {
    
    var director: String
    init(name: String, director: String) {
        self.director = director
        super.init(name: name)
    }
}

class Song: MediaItem {
    
    var artist: String
    init(name: String, artist: String) {
        self.artist = artist
        super.init(name: name)
    }
}

通过字面量方法创建一个数组,里面有两个Movie和三个Song。因为Swift的类检查器可以推断MovieSong有一个共同的父类MediaItem,所以它会断定该数组是一个[MediaItem]类型的数组:

let library = [
            Movie(name: "KF_Movie_1", director: "Wudao"),
            Song(name: "KF_Song_1", artist: "Qingge"),
            Movie(name: "KF_Movie_2", director: "Hetu"),
            Song(name: "KF_Song_2", artist: "Shantai"),
            Song(name: "KF_Song_3", artist: "Jianjia"),
]

这个library里的元素明显是MovieSong,但是如果循环浏览,会发现它返回的类型是MediaItem,并不是MovieSong。为了用到每个元素它实际的类型的属性、方法,这时候我们就需要检查或者转换它了。

检查类型

定义两个变量movieCountsongCount,利用is检查元素的类型,是Movie的话,movieCount加1,是Song的话,则songCount加1。

var movieCount = 0
        var songCount = 0
        for item in library {
            if item is Movie {
                movieCount += 1
            }else if item is Song {
                songCount += 1
            }
        }
        
print("Media library contains \(movieCount) movies and \(songCount) songs")

运行结果:

Media library contains 2 movies and 3 songs

显然通过is可以判断出数组里有2个Movie,三个Song

类型转换

Swift中类型转换有两个类型转换符:as?as!as?返回的是一个可选值,可能为nilas!返回的是一个展开的具体的
值。

Use the conditional form of the type cast operator (as?) when you are not sure if the downcast will succeed. This form of the operator will always return an optional value, and the value will be nil if the downcast was not possible. This enables you to check for a successful downcast.

Use the forced form of the type cast operator (as!) only when you are sure that the downcast will always succeed. This form of the operator will trigger a runtime error if you try to downcast to an incorrect class type.

简单的说,如果你明确知道要转换类型的那个元素真正类型,确保能转换成功,这时候就用as!,否则,用as?

在librar这个例子,我想分别打印出movie和song的相关信息,就得用到类型转换符,这里因为元素可能是Movie,也可能是Song,类型不能确定,所以用as?转换符:

for item in library {
    if let movie = item as? Movie {
        print("Movie: \(movie.name), dir.\(movie.director)")
    }else if let song = item as? Song {
        print("Song: \(song.name), by \(song.artist)")
    }
}

运行结果:

Movie: KF_Movie_1, dir.Wudao
Song: KF_Song_1, by Qingge
Movie: KF_Movie_2, dir.Hetu
Song: KF_Song_2, by Shantai
Song: KF_Song_3, by Jianjia

这个例子牵涉到了可选值(optional)的展开方式,这里不展开细讲,有问题可以给我发邮件或直接在评论区提出。

Any和AnyObject的类型转换

Swift中,定义了两个特殊的类名来替代那些没有具体指明类型的类:

  • AnyObject: 可以代表任何类。
  • Any: 可以代表任何类的实例,包括函数。

在开发中,我们有时候会获得一个[AnyObject]类型的数组,或者一个元素可以为任何类型的数组,但事实上我们很确定这个数组的元素是什么类型,这种情况我们可以用as!把AnyObject转换成更具体的那个类。如下,先定义一个[AnyObject]类型的数组:

let someObjects: [AnyObject] = [
    Movie(name: "KF_Movie_3", director: "Guoshi"),
    Movie(name: "KF_Movie_4", director: "Wushuang"),
    Movie(name: "KF_Movie_5", director: "Fenglei")
]

在这里,我们知道数组的元素都是Movie,所以用as!转换:

for object in someObjects {
    let movie = object as! Movie
    print("Movie: \(movie.name), dir. \(movie.director)")
}

还有一种更简便的写法,直接转换数组:

for movie in someObjects as! [Movie] {
    print("Movie: \(movie.name), dir. \(movie.director)")
}

运行结果:

Movie: KF_Movie_3, dir. Guoshi
Movie: KF_Movie_4, dir. Wushuang
Movie: KF_Movie_5, dir. Fenglei

Any转换,先定义一个[Any]类型数组,其实就是包含任何类型元素的数组:

var things = [Any]()
 
things.append(0)
things.append(0.0)
things.append(42)
things.append(3.14159)
things.append("hello")
things.append((3.0, 5.0))
things.append(Movie(name: "KF_Movie_6", director: "kefan"))
things.append({ (name: String) -> String in "Hello, \(name)" })

可以通过isas来判断元素的类型进行操作:

for thing in things {
    switch thing {
    case 0 as Int:
        print("zero as an Int")
    case 0 as Double:
        print("zero as a Double")
    case let someInt as Int:
        print("an integer value of \(someInt)")
    case let someDouble as Double where someDouble > 0:
        print("a positive double value of \(someDouble)")
    case is Double:
        print("some other double value that I don't want to print")
    case let someString as String:
        print("a string value of \"\(someString)\"")
    case let (x, y) as (Double, Double):
        print("an (x, y) point at \(x), \(y)")
    case let movie as Movie:
        print("a movie called \(movie.name), dir. \(movie.director)")
    case let stringConverter as String -> String:
        print(stringConverter("Michael"))
    default:
        print("something else")
    }
}

运行结果:

zero as an Int
zero as a Double
an integer value of 42
a positive double value of 3.14159
a string value of "hello"
an (x, y) point at 3.0, 5.0
a movie called KF_Movie_6, dir. kefan
Hello, Michael

写在最后

本文算是Type Casting的一个粗糙的翻译吧,可能有些地方不是那么准确,请多多请教。

参考链接

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • 132.转换错误成可选值 通过转换错误成一个可选值,你可以使用 try? 来处理错误。当执行try?表达式时,如果...
    无沣阅读 5,135评论 0 3
  • 类型转换是一种检查实例类型的方法,或者将该实例视为来自其自身类层次结构中的其他地方的不同超类或子类。Swift中的...
    Joker_King阅读 7,328评论 0 0
  • SwiftDay011.MySwiftimport UIKitprintln("Hello Swift!")var...
    smile丽语阅读 9,363评论 0 6
  • 作者:潘知常,南京大学新闻传播学院教授、博士生导师摘自:《东南学术》2017年第1期,原题为“无神时代:审美何为?...
    你他娘的真是个天才阅读 3,892评论 0 0
  • 做京东第二个月了,今天才知道我接手的店铺已经有两年多了,上两个星期刚从pop转sop,苦于初期流量有限,每天五六百...
    蒋春涛阅读 1,238评论 0 0

友情链接更多精彩内容