Swift4 基础部分: Type Casting(类型转换)

本文是学习《The Swift Programming Language》整理的相关随笔,基本的语法不作介绍,主要介绍Swift中的一些特性或者与OC差异点。

系列文章:

Type casting is a way to check the type of an instance, or to treat 
that instance as a different superclass or subclass from somewhere 
else in its own class hierarchy.
  • 类型转换可以用来检测实例的类型,或者将实例看成父类或子类的实例。

为类型转化定义一个类的层级(Defining a Class Hierarchy for Type Casting)

例子:

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

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

let library = [
    Movie(name: "Casablanca", director: "Michael Curtiz"),
    Song(name: "Blue Suede Shoes", artist: "Elvis Presley"),
    Movie(name: "Citizen Kane", director: "Orson Welles"),
    Song(name: "The One And Only", artist: "Chesney Hawkes"),
    Song(name: "Never Gonna Give You Up", artist: "Rick Astley")
];

检查类型(Checking Type)

Use the type check operator (is) to check whether an instance is of a 
certain subclass type.
  • 利用检查操作符is去检查实例是否是一个特定的子类类型。

例子:

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

向下转换(Downcasting)

A constant or variable of a certain class type may actually refer to 
an instance of a subclass behind the scenes. Where you believe this is 
the case, you can try to downcast to the subclass type with a type 
cast operator (as? or as!).
  • 当一个常量或变量实际上是一个子类的实例时,可以使用as? or 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("Movie: \(song.name), by \(song.artist)");
    }
}

执行结果:

Media library contains 2 movies and 3 songs
Movie: Casablanca, dir. Michael Curtiz
Movie: Blue Suede Shoes, by Elvis Presley
Movie: Citizen Kane, dir. Orson Welles
Movie: The One And Only, by Chesney Hawkes
Movie: Never Gonna Give You Up, by Rick Astley

AnyAnyObject的类型转换(Type Casting for Any and AnyObject)

Swift provides two special types for working with nonspecific types:

Any can represent an instance of any type at all, including function 
types.

AnyObject can represent an instance of any class type.
  • Any可以表示任何类型的实例包括函数类型。
  • Anyobject可以表示任何类类型的实例。

例子:

var things = [Any]();
things.append(0);
things.append(0.1);
things.append((3.0,5.0));
things.append("hello");

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 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)")
        default:
            print("something else");
    }
}

执行结果:

zero as an Int
a positive double value of 0.1
an (x, y) point at 3.0, 5.0
a string value of "hello"

这里简单扩展一下NSObject,AnyObject,Any的区别。

例子

class Example{}
class ObjectExample:NSObject{}
var example:Example = Example();
var objectExample:ObjectExample = ObjectExample();
print(example is NSObject);
print(example is AnyObject);
print(objectExample is NSObject);
print(objectExample is AnyObject);

执行结果

false
true
true
true
  • 1.每一个NSObject对象都是AnyObject,单并非每一个AnyObject都是NSObject
  • 2.NSObjectSwift中需要显示继承。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容

  • 2016年10月12日 Objective-C id为Swift Any Swift 3接口与Objective-...
    魔灵FH阅读 2,847评论 0 19
  • importUIKit classViewController:UITabBarController{ enumD...
    明哥_Young阅读 3,771评论 1 10
  • 类型转换 可以判断实例的类型。 类型转换在 Swift 中使用 is和 as操作符实现。 类型转换可以检查一个类型...
    勇往直前888阅读 611评论 0 0
  • 本来说好的一星期一篇的我又食言了,现在补上。逼着自己输出这件事,也不知道跟谁学会的,痛并快乐着。我的输入完全来自于...
    内有基坑阅读 437评论 12 2
  • 你知道吗?我最爱你做自己的样子。愿你十年后童心还在,好奇心还在。 十年后,你可能不再需要呆在父母的大伞之下,或许你...
    一默阅读 199评论 4 2