We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
true || true && false 返回false 正常不是应该&& 优先级高于||吗
The text was updated successfully, but these errors were encountered:
规则中 && 和 || 优先级相同,从左到右依次计算 a==1 && b==2 || c==3 --> (((a==1) && (b==2)) || (c==3)) 如果想要符合正常优先级,可使用括号true || (true && false) 或修改parser解析时的优先级权重
Sorry, something went wrong.
No branches or pull requests
true || true && false 返回false 正常不是应该&& 优先级高于||吗
The text was updated successfully, but these errors were encountered: