与set语句相关的查询
S %%G=A(%%I) 语句的含义是什么?
what is the meaning of the S %%G=A(%%I) statement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
S %%G=A(%%I) 语句的含义是什么?
what is the meaning of the S %%G=A(%%I) statement?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
语句 S %%G=A(%%I) 不是标准 MUMPS 中的有效语句。
相关语句 S %G=A(%I) 是标准 MUMPS 中的有效语句。
标准 MUMPS 的扩展可能会定义第一个语句的含义,但不能保证它可以在该实现之外的任何系统上工作。
该语句在 EsiObjects 或 Intersystems 缓存对象脚本中可能有意义。
相关语句S %G=A(%I)的意思是:
命令-> SET(给变量赋值)
SET 的左侧 -> %G 名为 %G 的简单临时变量只能从当前 MUMPS 作业访问。该变量不必定义,如果定义了,则与局部变量 %G 关联的任何值都将被 SET 右侧的传入值擦除。 (除非发生错误)
SET 的右侧 -> A(%I) 名为 %I 的简单临时变量(只能从当前 MUMPS 作业访问)的当前值用作名为 A 的简单临时数组变量的索引(或下标),该变量也只能从当前 MUMPS 访问工作。必须定义该数组位置的 %I 和 A。
命令的结果。局部变量 %I 的值用作局部变量的索引
变量 A,检索该数组位置处的值。然后将该数组位置的值复制到局部变量 %G 中。
The statement S %%G=A(%%I) is not a valid statement in Standard MUMPS.
A related statement S %G=A(%I) is a valid statement in Standard MUMPS.
It is possible that an extension of Standard MUMPS might define a meaning for the first statement, but it isn't guaranteed to work on any system other than that implementation.
It is possible that the statement makes sense in EsiObjects or Intersystems Cache Object Script.
The related statement S %G=A(%I) means:
Command -> SET (Asssign a value to a variable)
left-hand side of SET -> %G simple temporary variable named %G accessible only from the current MUMPS job. This variable does not have to be defined, and if it is defined, any value associated with the local variable %G will be erased by the incoming value of the right hand side of the SET. (unless an error occurs)
right-hand side of SET -> A(%I) The current value of the simple temporary variable named %I which accessible only from the current MUMPS job is used as an index (or subscript) into the simple temporary array variable named A which is also accessible only from the current MUMPS job. Both %I and A at that array position must be defined.
Result of Command. The value of the local variable %I is used as an index into the local
variable A, retrieving the value at that array location. The value at that array location is then copied into the local variable %G.