<变量>! Visual Basic 6 中的语法

发布于 2024-11-04 02:27:55 字数 306 浏览 1 评论 0原文

我正在为客户处理一些遗留代码,我想我理解这一行,但我需要 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 in Unit1.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

禾厶谷欠 2024-11-11 02:27:55

由于缺少 Option Explicit,变量在首次使用时会隐式创建。

! 阐明 QS1 的类型为 Single

Given the lack of Option Explicit, a variable is implicitly created when first used.

The ! clarifies that QS1 is of type Single.

Smile简单爱 2024-11-11 02:27:55

不是尾随!意味着 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文