0%

Swift 017 Static Properties and Methods

靜態屬性

Static可以讓你創建一個靜態的屬性,他可以快速儲存共享數據,不需要先創建一個類別才能使用。

1
2
3
4
5
6
7
8
9
struct Cat {
static var favoriteColor = "Red"

var name: String
var age: Int
}

let myCat = Cat(name: "dodo", age: 12)
print("\(Cat.favoriteColor)")