Swift语言精要 - Operator(运算符重载)
Posted Master HaKu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift语言精要 - Operator(运算符重载)相关的知识,希望对你有一定的参考价值。
运算符重载
Swift的这一语言特性或许应该启发于C++
class Vector2D { var x : Float = 0.0 var y : Float = 0.0 init (x : Float, y: Float) { self.x = x self.y = y } func +(left : Vector2D, right: Vector2D) -> Vector2D { let result = Vector2D(x: left.x + right.x, y: left.y + right.y) return result } }
测试代码如下:
let first = Vector2D(x: 2, y: 2) let second = Vector2D(x: 4, y: 1) let result = first + second // = (x:6, y:3)
以上是关于Swift语言精要 - Operator(运算符重载)的主要内容,如果未能解决你的问题,请参考以下文章