经典 ASP“或”关键词

发布于 2024-10-24 19:26:05 字数 183 浏览 4 评论 0原文

我只是想知道 - 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落花浅忆 2024-10-31 19:26:05

标准 OR 运算符不具有排他性:True 或 True 给出 True

The standard OR operator is NOT exclusive: True or True gives True.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文