如何在Swift中创建类方法/属性?

前端之家收集整理的这篇文章主要介绍了如何在Swift中创建类方法/属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Objective-C中的类(或静态)方法是在声明中完成的。
@interface MyClass : NSObject

+ (void)aClassMethod;
- (void)anInstanceMethod;

@end

如何在Swift中实现?

它们称为 type propertiestype methods,您使用类或静态关键字。
class Foo {
    var name: String?           // instance property
    static var all = [Foo]()    // static type property
    class var comp: Int {       // computed type property
        return 42
    }

    class func alert() {        // type method
        print("There are \(all.count) foos")
    }
}

Foo.alert()       // There are 0 foos
let f = Foo()
Foo.all.append(f)
Foo.alert()       // There are 1 foos

猜你在找的Swift相关文章