Swiftメモ


記事になる前のとにかくSwiftについてメモしていく場所

1
extension

クラスを拡張できる。 ⇒Control Structure with Extension

1
mutating

いわゆるconst? ⇒Swift and mutating struct

1
2
3
let three = 3
let pointOneFourOneFiveNine = 0.14159
let pi = three + pointOneFourOneFiveNine

⇒エラーになる。 Double(three)ってしてあげないと Integer + Doubleの足し算が用意されていない・・・?

1
typealias

defineみたいに使えるやつかな?

SwiftのnilはObjective-Cのnilとは意味がちがう。 Objective-Cはnilはポインタ

Comments