-1
我想訪問它自己的類中的類方法。我知道你可以使用自關鍵字在一個類的實例,像這樣:在類中引用類自己的方法
class InstanceClass {
var testProperty = "testing"
func testMathod() {
print(self.testProperty)
}
}
// initiate like so
let newInstance = InstanceClass()
newInstance.testMathod() // result testing
什麼是對的靜態屬性訪問下面的例子類關鍵字:
class BaseClass {
static let testProperty = "test"
class func printProperty() {
// here I want to access testProperty
}
}
我知道,我能做的BaseClass .testProperty在上面的例子中,但我想保持它的抽象。
我有Swift 2.11運行。
「我想保持它抽象」你能解釋一下嗎? – anhtu
請考慮以下示例:https://gist.github.com/anonymous/46ff24e7adbf95d151fe –