zoukankan      html  css  js  c++  java
  • COMP-3

    COMP-3 再次探讨
    2010-10-31 21:33

    今天在hex中对9型和comp-3深入研究了下。

    9型:

    在普通情况下:F0 --> F9 表示 1 --> 9

    在S9最后一位:正数:C1 --> C9   表示 1 --> 9

                              负数 D1 --> D9   表示 1 --> 9

    comp-3型:

    普通情况下:hex中一个数就代表comp-3中一个数

    在有S的最后一位:正数:?C

                         负数:?D

    无S的最后一位:?F  

    2010-09-19 15:20

    Comp-3 fields in COBOL

    Comp-3 fields are denoted in COBOL with the "usage is" clause after the PIC, like this:

    PIC S9(5) usage is computational-3.

    However, the "usage is" is not required and seldom used, and "computational-3" is usually abbreviated "comp-3", so you more commonly see:

    PIC S9(5) comp-3.

    The COBOL PIC, or picture, for a comp-3 packed field specifies the number of digits after unpacking. The actual number of bytes occupied in the file is about half that. To calculate the number of bytes from the PIC, add 1 (for the sign) to the total number of digits, divide by 2, and round up if necessary. For example:

    PIC S9(7) COMP-3.     Byte size = (7 + 1) / 2 = 4
    
        PIC S9(5)V99 COMP-3.  Byte size = (5 + 2 + 1) / 2 = 4
    
        PIC S9(6) COMP-3.     Byte size = (6 + 1) / 2 = 3.5, rounded to 4

    Comp-3 fields reserve a nybble for the sign, even for "unsigned" values, so the following fields are still 4 bytes:

    PIC 9(7) COMP-3.     Byte size = (7 + 1) / 2 = 4
    
        PIC 9(6) COMP-3.     Byte size = (6 + 1) / 2 = 3.5, rounded to 4

    Examples

    Lets look at some examples of how comp-3 data is stored. The left column in the table below is the decimal value being stored, and the right column is the hexadecimal value you will see in the file:

         Value  Comp-3, hex
           +0           0C
           +1           1C
          +12        01 2C 
         +123        12 3C
        +1234     01 23 4C
           -1           1D
        -1234     01 23 4D
  • 相关阅读:
    js中父窗口获得模态窗口的返回值
    Jquery获取控件值实例(转载)
    各种类库网址学习
    IIS启动网站时, 提示: “另一个程序正在使用此文件,进程无法访问”
    查看端口占用情况
    顽固的换行问题
    mac上共享android手机屏幕软件
    关于软键盘弹出的问题
    mac搭建android studio开发环境
    C语言位域和大小端
  • 原文地址:https://www.cnblogs.com/kakaisgood/p/13206691.html
Copyright © 2011-2022 走看看