有没有人见过QUALIFIED这个?
我在看DEMO的时候看到定义DS的 这样写的 不知道 QUALIFIED 这属性 干吗用的....
0116.00 D CTL DS QUALIFIED
有见过的没? F1也没发现 这个属性。。。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我在看DEMO的时候看到定义DS的 这样写的 不知道 QUALIFIED 这属性 干吗用的....
0116.00 D CTL DS QUALIFIED
有见过的没? F1也没发现 这个属性。。。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
{:3_195:}
回复 1# 辽B_AS400
多看看reference吧!书上有啊
<ILE RPG Reference>
QUALIFIED
The QUALIFIED keyword specifies that the subfields of a data structure will be
accessed by specifying the data structure name followed by a period and the
subfield name. The data structure must have a name.
The subfields can have any valid name, even if the name has been used elsewhere
in the program. This is illustrated in the following example:
* In this example, FILE1 and FILE2 are the names of files. FILE1 and FILE2 are
* also subfields of qualified data structure FILESTATUS. This is valid,
* because the subfields FILE1 and FILE2 must be qualified by the data structure
* name: FILESTATUS.FILE1 and FILESTATUS.FILE2.
Ffile1 if e disk
Ffile2 if e disk
D fileStatus ds qualified
D file1 N
D file2 N
C open(e) file1
C eval fileStatus.file1 = %error
1.问前先搜索
2.下些工具书,置顶帖子里有
http://bbs2.chinaunix.net/thread-1664121-1-2.html
rpgle程序 是被一个clle 程序调用 ds 是用来传递参数用的...我理解了...{:3_195:}
如果一个程序要调用另外一个程序,如果程序之间的返回参数传递是DS的话,因为这个DS已经在被调用程序中做过说明,调用程序要使用这个DS,必须,而且只能在D表中声明是“QUALIFIED”,这样才能使用。
有的时候还在QUALIFIED后 加 数组 DIM(10)