Delphi 6 中是否继续?
当我尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它是在 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.
错误消息意味着有人给了一个与关键字同名的变量,而 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.