for 循环的测试表达式部分中的 LE 是什么意思

发布于 2024-11-19 07:52:50 字数 221 浏览 1 评论 0原文

嗨,我对 Coldfusion 很陌生,我正在尝试调试一些 cfscript 逻辑。基本上我想知道“le”在 for 循环的测试表达式部分中意味着什么。我浏览了 Coldfusion 文档,但找不到它的含义。我猜它的意思是小于或等于,但我相信它被表示为 LTE。这是代码示例:

for (i = 1; i le length; i = i + 1)

提前致谢。

Hi I'm very novice to coldfusion and I am trying to debug some cfscript logic. Basically I want to know what "le" means in the test-expression part of the for loop. I have looked through the coldfusion docs but can't find what it means. I am guessing it means less than or equals, but I believe that is denoted as LTE. Here's a sample of the code:

for (i = 1; i le length; i = i + 1)

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

多情癖 2024-11-26 07:52:50

这是LTE 的另一种说法。它们是等效的:

 LESS THAN OR EQUAL TO
 LTE
 LE

但是对于新代码,我会使用 <= 代替。更直观。

for (i = 1; i <= length; i++) {
   ... 
}  

It is an alternate way of saying LTE. These are equivalent:

 LESS THAN OR EQUAL TO
 LTE
 LE

But for new code, I would use <= instead. It is more intuitive.

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