swift let和static常量的区别

2022-05-16  本文已影响0人  雷霆嘎巴嘎嘎
let 、var、static

swift 引入了let关键字来声明不可变对象.
在Objective C中,我们使用static来声明一些常量. 静态变量属于类型而不是类的实例.可以使用类型的全名访问静态变量.

class Cat {
    var foot = "white"
    static var head = "yellow"
}

// changing nonstatic variable
Cat().foot// Lexus


// changing static variable
Cat.head // Jeep
上一篇下一篇

猜你喜欢

热点阅读