美文网首页
swift3.0 自定义运算符

swift3.0 自定义运算符

作者: 童冀 | 来源:发表于2017-10-10 15:45 被阅读5次
运算符修饰
左:prefix
右:postfix
中:infix

// 自定义操作符 别名类型
infix operator >>> : ATPrecedence
precedencegroup ATPrecedence {
    associativity: left
    higherThan: AdditionPrecedence
    lowerThan: MultiplicationPrecedence
}

相关文章

网友评论

      本文标题:swift3.0 自定义运算符

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