Delphi中有自动关键字吗?
我自己正在学习 Delphi。我已经看到 auto
变量类型可以在 C++ 中发挥一定程度的魔力。 Delphi 中是否有 auto
变量类型或类似的类型?
I'm learning Delphi myself.. I have seen the auto
variable type that can do some degree of magic in C++. Is there an auto
a variable type, or something similar to this, in Delphi?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C++ 中的 auto 用于让编译器根据用于初始化变量的值类型来推断变量的数据类型。
在 Delphi 10.3 及更高版本中,类型推断仅在 内联变量:
auto
in C++ is used to let the compiler infer a variable's data type based on what type of value is used to initialize it.In Delphi 10.3 and later, type inference is available only on an inline variable: