经典 ASP“或”关键词
我只是想知道 - or 关键字是排他的吗?
我的意思是像下面这样:
if x or y then
如果 x 和 y 都为 true,这会返回 true 吗?或者是否只有一个或另一个但不是两者都为 true 才能执行 if 内的代码?
I was just wondering - is the or keyword exclusive?
I mean like given the following:
if x or y then
Would this return true if both x and y were true? Or is it that one or the other but not both has to be true to execute the code inside the if?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标准 OR 运算符不具有排他性:
True 或 True
给出True
。The standard OR operator is NOT exclusive:
True or True
givesTrue
.