在 COBOL 中填充数组时出现问题
我遇到了非常奇怪的情况。我在 COBOL pgm 中定义了一个数组。
05 A-TABLE.
10 A-TABLE-LIST OCCURS 10 TIMES INDEXED BY A-IDX.
15 FILLER PIC X(7) VALUE '<TEST>'.
15 A-LIST-VALUE PIC X(30).
15 FILLER PIC X(8) VALUE '</TEST>'.
我设置 A-IDX=1 并将“XYZ”移动到 A-LIST-VALUE(A-IDX)。 显示A-TABLE时,显示为 XYZ------------------------------ 和所有空格...:( 我不明白这里有什么问题? 谁能帮我解决这个问题?
问候, 赛莎。
I am getting very strange scenario. I have one array defined in my COBOL pgm.
05 A-TABLE.
10 A-TABLE-LIST OCCURS 10 TIMES INDEXED BY A-IDX.
15 FILLER PIC X(7) VALUE '<TEST>'.
15 A-LIST-VALUE PIC X(30).
15 FILLER PIC X(8) VALUE '</TEST>'.
I am setting A-IDX=1 and moving 'XYZ' to A-LIST-VALUE(A-IDX).
While displaying A-TABLE, it is showing as
XYZ------------------------------
and all spaces... :(
I am not getting what is the issue here?
Can anyone help me to resolve this?
Regards,
Saisha.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能以这种方式设置表的值。在表中设置值的一种方法是使用 REDEFINES 和单独的数据区域。
那是相当麻烦的。另一种方法是在运行时将数据移入初始化段落。
我没有尝试编译其中任何一个,这只是徒手的。
附带说明一下,如果您使用 Enterprise COBOL 版本 3.2 或更高版本,并且尝试在 COBOL 中创建 XML,则存在 XML GENERATE 语句。
You cannot set values for a table that way. One way to set values in a table is to use a REDEFINES and a separate data area.
That is pretty cumbersome. Another method is to MOVE the data in at runtime in an initialisation paragraph.
I didn't try compiling any of these, this is just freehand.
As a side note, if you are using Enterprise COBOL version 3.2 or higher and you are trying to create XML in COBOL, there exists an XML GENERATE statement.
据我了解,你的问题是为什么“XYZ<27个空格>”仅移动“XYZ”时显示。如果是这样,您需要在移动之前
初始化
,并在显示或移动到另一个变量之前修剪
空格。如果您的问题尚未解决,请详细描述,否则请告诉我们问题是如何解决的。
To my understanding, your question is why "XYZ<27 spaces>" is being displayed when only "XYZ" was moved. If so, you need to
initialize
before moving andtrim
the spaces before displaying or moving into another variable.If your problem is not yet solved, describe much otherwise let us know how it was resolved.