美文网首页
swift-operate 操作符

swift-operate 操作符

作者: lotawei | 来源:发表于2016-12-16 14:11 被阅读17次
    • +-*/ 单个的操作符非常简单
      格式 func + (type1,type2) -> any

    • += +* 麻烦些 实现+*需要加上这个 再去实现

       precedencegroup DotProductPrecedence {
          associativity: none
         higherThan: MultiplicationPrecedence
      }
      
      infix operator +*: DotProductPrecedence
      
    • 效果如下
      func +* (left: Vector2D, right: Vector2D) -> Double


      屏幕快照 2016-12-16 下午2.04.27.png

    相关文章

      网友评论

          本文标题:swift-operate 操作符

          本文链接:https://www.haomeiwen.com/subject/lupnmttx.html