是否有“砰”的一声? VB6 中的运算符 (!) 如果仅位于变量/数字的末尾,则意味着什么?如果是这样,这意味着什么?
我在工作中编写一些 VB6 代码,经常遇到变量,有时还会遇到以“!”结尾的数值。例如(请注意 myVar!
末尾的 '!' 和第二个 2!
:
dist! = Sqr(x ^ 2 + y ^ 2!)
这是我正在处理的代码中的一行。'! ' 这里有任何意义吗?我认为它确实如此,因为为什么要以其他方式使用它,但找不到有关此特定用途的任何文档。
I am working on some VB6 code at work and frequently come across variables, and sometimes numerical values ending with '!'. For example (note the '!' at the end of myVar!
and the second 2!
:
dist! = Sqr(x ^ 2 + y ^ 2!)
This is a line from the code I am working on. Does the '!' hold any meaning here? I would assume it does, because why use it otherwise, but can't find any documentation on this particular use.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不是一个运算符,而是一个类型指示器。名称末尾的感叹号/感叹号表示可以保存单精度浮点值的变量。以下是 VB 类型指示器的列表(可能不完整):
It's no an operator, it's a type indicator. An Exclamation/Bang at the end of the name indicates a variable that can hold single precision floating point value. Here's a list of VB type indicators (may not be complete):