码迷,mamicode.com
首页 > 编程语言 > 详细

Swift 中的静态方法继承

时间:2014-11-17 13:56:04      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   div   log   bs   as   nbsp   

Base and Derived Classes:

class BaseClass{
    class func staticMethod(){
        println("BaseClass.staticMethod")
    }
    
    class func staticMethodWithSelfCall(){
        self.staticMethod()
    }
    
    func instanceMethodWithStaticCall(){
        self.dynamicType.staticMethod()
    }
}

class DerivedClass : BaseClass{
    override class func staticMethod(){
        println("DerivedClass.staticMethod")
    }
}

Test Code:

    BaseClass.staticMethod()
    DerivedClass.staticMethod()
    
    BaseClass.staticMethodWithSelfCall()
    DerivedClass.staticMethodWithSelfCall()
    
    BaseClass().instanceMethodWithStaticCall()
    DerivedClass().instanceMethodWithStaticCall()

Output:

BaseClass.staticMethod
DerivedClass.staticMethod
BaseClass.staticMethod
DerivedClass.staticMethod
BaseClass.staticMethod
DerivedClass.staticMethod

 

Swift 中的静态方法继承

标签:style   blog   color   sp   div   log   bs   as   nbsp   

原文地址:http://www.cnblogs.com/zanxiaofeng/p/4103400.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!