创建无限循环的最佳方法是什么?

发布于 2024-12-29 00:37:55 字数 86 浏览 0 评论 0原文

我一直在为此使用 while 循环,但最近与一位朋友争论哪种形式的迭代是在 PHP 中建立无限循环的最佳方法?

哪种迭代是无限循环的最佳类型?

I have been using a while loop for this but recently got into debate with a friend over what form of iteration is the best way to establish an infinite loop in PHP?

Which is the best type of iteration to infinitely loop?

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

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

发布评论

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

评论(2

送你一个梦 2025-01-05 00:37:55
while(true)
{
     // ...
}

因为,在这种情况下,条件评估将是最小的。

顺便说一句,你真的必须无限循环吗?你知道自己在做什么吗?我希望! :)

while(true)
{
     // ...
}

Because, in this case the condition evaluation will be minimal.

BTW, do you really have to loop infinitely? You know what you are doing right? I hope! :)

作死小能手 2025-01-05 00:37:55

据我所知,这是个人喜好。我个人喜欢 while(1){},因为它比 for(;;){} 更容易识别。

As far as I know, it's personal preference. I personally like while(1){}, as it's easier for me to spot than for(;;){}.

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