swift function 与 method

class A{

   calss func cMethod(){

   }

   static func sMethod(){

   }

   

   func normalMethod(){

   }

}

- - -

函数 就是就是类型(class, struct, enum)中普通的方法

方法 有两种: 

 --实例方法: 用类型实例调用其某个函数时,那么这个函数被称为实例方法

    eg: 

        var a = A()

        a.normalMethod()

 --类型方法: 用类型本身调用其某个函数是,那么这个函数被称为类型方法

   eg: 

        A.cMethod()

        A.sMethod()


你可能感兴趣的:(swift function 与 method)