<变量>! Visual Basic 6 中的语法变量>
我正在为客户处理一些遗留代码,我想我理解这一行,但我需要 vb 专家来仔细检查我。
QS1! = Unit1.XICFMc(1)
我的猜测是这句话:
“如果
QS1
不存在,DIM
它并为其分配Unit1.XICFMc
中第一个位置的值”
我对吗?我在项目中的任何地方都找不到 QS1
的定义 - 这就是我做出上述猜测的原因。
I'm working through some legacy code for a client and I think I understand this line but I need vb expert to double-check me.
QS1! = Unit1.XICFMc(1)
My guess is that this saying:
"If
QS1
doesn't exist,DIM
it and assign it the value in the first position inUnit1.XICFMc
"
Am I right? I can't find a definition for QS1
anywhere in the project - which is what lead me to my guess above.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于缺少 Option Explicit,变量在首次使用时会隐式创建。
!
阐明QS1
的类型为Single
。Given the lack of
Option Explicit
, a variable is implicitly created when first used.The
!
clarifies thatQS1
is of typeSingle
.不是尾随!意味着 QS1 变量应键入为 Single。这是 basic 早期版本的延续,使用后缀来声明类型。 v$ 是一个字符串,v% 是一个整数等等。 IIRC,你不能有显式的选项来使其工作。
Isn't a trailing ! mean that the QS1 variable should be typed as Single. This is a holdover from early versions of basic that used postfixes to declare types. v$ was a string, v% was an integer etc. IIRC, you cannot have option explicit on for this to work.