我在 Swift中声明了一个类函数,我希望能够访问此函数中已声明为外部的某个变量. var something : Int = 0 和 class func add(){} 所以我希望在这个类func中访问’something’的值. 对不起,如果我听起
var something : Int = 0
和
class func add() { }
所以我希望在这个类func中访问’something’的值.
对不起,如果我听起来很愚蠢,对Swift来说还是有点新鲜所以请耐心等待.
您应该了解什么是类func,这与静态函数相同,与覆盖规则的差别很小.如果你想访问var something:Int你需要创建该类的实例.
var classInstance = MyClass() //swift allocates memory and creates an instance classInstance.something = 5
static variable是一个全局变量,可以在不创建实例的情况下访问它.
static var something : Int = 4 MyClass.something = 3 //didnt create instance of MyClass
在声明它时将值设置为静态变量(或将nil设置为可选)
static var something : int //this will not compile