如何转义 Delphi 中的保留字?
我需要转义保留字以将其用作 Delphi 中的标识符。我认为这是通过使用&符号“&”来完成的,但这似乎不起作用。还有其他建议吗?
I need to Escape a reserved word to use it as an identifier in Delphi. I thought that was accomplished by using the ampersand "&", but that doesn't seem to be working right. Any other suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了 文档页面 (搜索扩展语法),它应该是&符号。
找出问题所在了。 & 符号用于编译和错误洞察,但不适用于代码完成。很高兴知道。我必须添加一个 _ 后缀才能使代码完成正常工作,然后在后文中将其改回来。我应该检查 QC 是否有错误报告。
I found the doc page (search for Extended Syntax) on it, and it should be ampersand.
Figured out the problem. The ampersand works for compiling and error insight, but not code completion. Good to know. I had to add an _ suffix to get code completion to work, then change it back afterwords. I should check QC for a bug report.