Difference between & and && in Scala?
本问题已经有最佳答案,请猛点这里访问。
我正在试图找出scala中&;和&;的区别。我查过了才拿到这个
& <-- verifies both operands
&& <-- stops evaluating if the first operand evaluates to false since the result will be false
有人能用不清楚的例子来解释同样的问题吗?这里验证两个操作数意味着什么?我们说的是布尔人吗?
两者都是scala中的逻辑和运算符。第一个表单
在退出if条件之前,将对
这就是
您可以使用位与(