当前位置: 代码迷 >> 综合 >> Day:16:方法
  详细解决方案

Day:16:方法

热度:44   发布时间:2023-09-29 19:01:13.0
  • 实例方法
  1. 实例方法是属于特定类实例、结构体实例或者枚举实例的函数。他们为这些实例提供功能性,要么通过提供访问和修改实例属性的方法,要么通过提供访问和修改实例属性的方法,要么通过提供与实例目的的相关的功能。
  2. 每一个类的实例都隐含一个叫做self的属性,他完完全全与实例本身结合相当。你可以使用self属性来在当前实例当中调用它自己的方法。
  3. 实际上,你不需要经常在代码中写self。如果你没有显式地写出self,swift会在你于方法中使用已知属性或者方法的时候假定你是调用来当前实例中的属性或者方法。
  4. 例外就是当一个实例方法的形式参数名于实例中某个属性拥有相同名字的时候。在这种情况下,形式参数名具有优先权,并且调用属性的时候使用更加严谨的方式就很有必要来。你可以使用self属性来区分形式参数名和属性名。
  • 在实例方法中修改属性
  1. 结构体和枚举是值类型。默认情况下,值类型属性不能被自身的实例方法修改。
  2. 你可以选择在func关键字前放一个mutating关键字来指定方可以修改属性。
  • 在mutating 方法中赋值给self
  1. Mutating 方法可以指定整个实例给隐含的self。
  • 枚举的mutating 方法
  1. 枚举的异变方法可以设置隐含的self属性为相同枚举里的不同成员。
  • 类型方法
  1. 通过在func关键字之前使用static关键字来明确一个类型方法。类同样可以使用class关键字来允许子类重写父类对类型方法的实现。
  • 【代码演示】
    //1、实例方法
    class Counter {var count = 0func increment() {count += 1}func increment(by amount:Int){count += amount}func reset(){count = 0}
    }//2、实例方法 - self
    struct PointFunc {var x = 0.0,y = 0.0func isToTheRight(x:Double) -> Bool {return self.x > x}
    }let somePointFunc = PointFunc(x: 4.0, y: 5.0)
    if somePointFunc.isToTheRight(x: 1.0){print("this point to the right ")
    }//3、修改属性
    struct NewCenter {var width = 0.0,height = 0.0mutating func moveBy(x deltaX:Double,y deltay:Double){width += deltaXheight += deltay}
    }
    var someCenter = NewCenter(width: 1.0, height: 2.0)
    someCenter.moveBy(x: 2.0, y: 3.0)//5、异变方法
    enum TriStateSwitch {case off,low,highmutating func next (){switch self{case.off:self = .lowcase.low:self = .highcase.high:self = .off}}
    }var overLight = TriStateSwitch.low
    overLight.next()
    overLight.next()//6、类型方法
    struct TestPoint {var x = 0var y = 0func printInfo() {print("x is \(x),y is \(y)")}static func printTypeInfo(){print("A Point")}
    }
    var testP = TestPoint(x: 2, y: 4)
    testP.printInfo()
    TestPoint.printTypeInfo()

  相关解决方案