• 逻辑运算符

    逻辑运算符

    支持一下操作符

    操作示例
    a && b
    a || b
    !a

    示例︰

    1. if a && b || !c {
    2. return -1;
    3. }
    4. return 1;