对 Caché 进行类型检查 对象
Caché 对象(来自 Intersystems)上的方法参数的类型定义有什么意义,因为在将其预编译为 .int 格式后,它会删除任何类型信息,因此根本没有区别?
What is the point of type definition on method parameters on Caché Object (from Intersystems) since after it's pre-compiled to the .int format, it removes any typing information, thus making no difference at all?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
缓存中没有真正的数据类型,因此没有类型检查。
There aren't really datatypes in Cache, so there is no type checking.
如果您正在编写 ANSI M 代码,则根本不应该有类型。 我的猜测是这是特定于系统间代码的。
If you're writing ANSI M code, you shouldn't have types at all. My guess is that this is specific to Intersystems code.
这些类型不会在 Cache 代码内部使用/检查,但当您通过 XML、SQL 等公开类时,会使用它们。
人们希望在未来的版本中 Intersystems 能够开始进行一些编译时类型检查,但那也许要求太多了。
Those types aren't used/checked internal to Cache code, but they are used when you expose your classes via XML, SQL, etc.
One would hope that in a future version Intersystems would start doing some compile-time type checking, but that may be too much to ask.