以这种方式定义函数到底意味着什么: class Foo { private class func bar() { //do something cool }} 换句话说,第二类关键字的目的是什么? 使用Swift 2.1. 类和静态方法是通过类型而不是实例调用的
class Foo { private class func bar() { //do something cool } }
换句话说,第二类关键字的目的是什么?
使用Swift 2.1.
类和静态方法是通过类型而不是实例调用的.let x = NSString.pathWithComponents(["/", "usr", "local", "bin", "brew"])
任何类型都可以有静态方法,类方法可能只出现在类上.子类可以覆盖类方法,但不能覆盖静态方法.
class Foo { class func bar() -> String { return "foo bar" } static func baz() -> String { return "foo baz" } } class Bar: Foo { override class func bar() -> String { return "bar bar" } }