需要Cobol文档参考

时间:2014-01-09 08:53:02

标签: cobol

无法找到描述我的示例的Cobol文档的参考。

     01 staff-record-1. 
            05 staff-id       pic s9(4) comp-5. 
            05 staff-name     pic x(20). 
     01 staff-record-2. 
            05 staff-id       pic s9(4) comp-5. 
            05 staff-name     pic x(20). 
            05 staff-info     pic x(40).

    ....
* i can move value    
     move 'info' to staff-info in staff-record-2
* or (if name is uniq)
     move 'info' to staff-info 

我在哪里可以找到文档参考?

4 个答案:

答案 0 :(得分:2)

请参阅http://opencobol.add1tocobol.com/gnucobol/

上的GNU Cobol常见问题解答

更重要的是,这是一个世界级的免费赠品 ......

Gary Cutler的GNU Cobol程序员指南

http://opencobol.add1tocobol.com/GNU%20COBOL%202.0%20Programmers%20Guide.pdf

短名称

http://opencobol.add1tocobol.com/GNUCobol2.pdf

http://opencobol.add1tocobol.com/GNUCobol2-A4.pdf

答案 1 :(得分:1)

您可以在Enterprise COBOL for z / OS语言参考手册SC27-1408-04的第8章“引用数据名称”中找到它。

答案 2 :(得分:0)

HP COBOL MANUAL第6.2.1节似乎是合适的。或谷歌“cobol语言参考手册移动标识符非独特”

答案 3 :(得分:0)