Swift开源之编写高性能代码(更新版)

小伙伴们,swift开源啦!

<Writing High-Performance Swift Code>中的信息会给我们的开发带来很多实用性的建议。

一、降低动态调度

1.动态调度

class A {
var aProperty: [Int]
func doSomething() { ... }
 dynamic doSomethingElse() { ... }
 }
class B : A {
override var aProperty {
get { ... }
set { ... }
}
override func doSomething() { ... }
}
func usingAnA(a: A) {
a.doSomething()
a.aProperty = ...
}

2.使用'final'时,声明并不需要被重写

final class C {
// No declarations in class 'C' can be overridden.
var array1: [Int]
func doSomething() { ... }
}

 class D {
final var array1 [Int] // 'array1' cannot be overridden by a computed property.
var array2: [Int]      // 'array2' *can* be overridden by a computed property.
}

func usingC(c: C) {
c.array1[i] = ... // Can directly access C.array without going through dynamic dispatch.
c.doSomething() = ... // Can directly call C.doSomething without going through virtual dispatch.
}

func usingD(d: D) {
d.array1[i] = ... // Can directly access D.array1 without going through dynamic dispatch.
d.array2[i] = ... // Will access D.array2 through dynamic dispatch.
}

3.使用'private'时,在本类之外其声明并不需要访问

private class E {
func doSomething() { ... }
}

>class F {
private var myPrivateVar : Int
}

>func usingE(e: E) {
e.doSomething() // There is no sub class in the file that declares this class.
// The compiler can remove virtual calls to doSomething()
// and directly call A’s doSomething method.
}

>func usingF(f: F) -> Int {
return f.myPrivateVar
}

二、高效使用容器类型

1.数组中使用值类型

// Don't use a class here.
struct PhonebookEntry {
var name : String
var number : [Int]
}
var a : [PhonebookEntry]

2.在不需要NSArray桥接时,使用ContiguousArray作为参考类型

class C { ... }var a: ContiguousArray= [C(...), C(...), ..., C(...)]

3.必要时,可以使用NSArray代替对象

var c: [Int] = [ ... ]
var d = c        // No copy will occur here.
d.append(2)      // A copy *does* occur here.

func append_one(a: [Int]) -> [Int] {
a.append(1)
return a
}
var a = [1, 2, 3]
a = append_one(a)

func append_one_in_place(inout a: [Int]) {
a.append(1)
}
var a = [1, 2, 3]
append_one_in_place(&a)

三、未检查操作

使用未经检查的整数运算时,就能判断不可能发生溢出

a : [Int]
b : [Int]
c : [Int]
// Precondition: for all a[i], b[i]: a[i] + b[i] does not overflow!
for i in 0 ... n {
c[i] = a[i] &+ b[i]
}

四、泛型

如例:

class MySwiftFunc{ ... }MySwiftFuncX     // Will emit code that works with Int...MySwiftFuncY               // ... as well as String.
class MyStack{
func push(element: T) { ... }
func pop() -> T { ... }
}

func myAlgorithm(a: [T], length: Int) { ... }
// The compiler can specialize code of MyStack[Int]
var stackOfInts: MyStack[Int]
// Use stack of ints.
for i in ... {
stack.push(...)
stack.pop(...)
}

var arrayOfInts: [Int]
// The compiler can emit a specialized version of 'myAlgorithm' targeted for
// [Int]' types.
myAlgorithm(arrayOfInts, arrayOfInts.length)

1.在同一个文件中它们可以被用于一些通用声明

2.允许编译器执行一些通用序列化

//Framework.swift:
protocol Pingable { func ping() -> Self }
protocol Playable { func play() }
extension Int : Pingable {  
        func ping() -> Int { return self + 1 }

class Game: Playable {  
var t : T  init (_ v : T) {t = v}  
func play() {    
        for _ in 0...100_000_000 { t = t.ping() } 
 }
}

func play_a_game(game : Playable ) {  
           // This check allows the optimizer to specialize the  
           // generic call 'play'  
      if let z = game as? Game{
            z.play()
      } else {
           game.play() }
     }
/// -------------- >8
// Application.swift:
play_a_game(Game(10))

五、Swift的较大值

 protocol P {}
struct Node : P {
var left, right : P?
}

>struct Tree {
var node : P?
init() { ... }
}

使用copy-on-write语义来处理较大值

struct tree : P {
var node : [P?]
init() {
node = [ thing ]
}
}

final class Ref{   
         var val : T  init(_ v : T) {val = v}
}
struct Box{    
        var ref : Refinit(_ x : T) { ref = Ref(x) }
        var value: T {
        get { return ref.val }
        set {
                if (!isUniquelyReferencedNonObjC(&ref)) {
                ref = Ref(newValue)
                return       }
        ref.val = newValue}
}
}

<The type Box can replace the array in the code sample above>

六、代码的安全

example:
final class Node {
var next: Node?
var data: Int
...
}

使用非引用,以避免引用计数'开支'

var Ref : Unmanaged= Unmanaged.passUnretained(Head)
while let Next = Ref.takeUnretainedValue().next {
...
Ref = Unmanaged.passUnretained(Next)
}

七、协议

标记的协议只能满足固定那个类的协议

protocol Pingable : class { func ping() -> Int }

注:以上是个人读取相关文档的理解,仅供大家学习使用。

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

推荐阅读更多精彩内容