Delphi 6 中是否继续?

发布于 2024-10-31 17:14:44 字数 140 浏览 0 评论 0原文

当我尝试将 while 循环中的 GoTo 替换为 Continue 时,出现错误,但每当我这样做时,都会收到错误消息“需要语句,但找到‘布尔’类型的表达式”。 Delphi 6 中没有 continue 关键字吗?错误消息是否还有其他含义?

谢谢。

I'm getting an error when I'm trying to replace a GoTo in a while loop with a Continue, but whenever I do I get an error reading "Statement expected, but expression of type 'Boolean' found". Is continue a keyword not in Delphi 6? Does the error message mean something else?

Thanks.

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

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

发布评论

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

评论(2

花开柳相依 2024-11-07 17:14:44

它是在 Delphi 5 中,所以我假设它是在 Delphi 6 中。
您的代码中肯定还发生了其他事情,但如果不发布它,就无法判断。

It is in Delphi 5, so I would assume it is in Delphi 6.
There must be something else going on in your code, but without posting it, it's impossible to tell.

回首观望 2024-11-07 17:14:44

错误消息意味着有人给了一个与关键字同名的变量,而 Delphi 正在使用它而不是关键字。找到该变量并尝试重命名它。

The error message means that somebody gave a variable the same name as the keyword and Delphi is using that instead of the keyword. Find the variable and try renaming it.

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