类 Bytes2Number


  • public class Bytes2Number
    extends java.lang.Object
    作者:
    yaqiang
    • 方法概要

      所有方法 静态方法 具体方法 
      修饰符和类型 方法 说明
      static int int4​(int a, int b, int c, int d)
      Convert four ints into a signed integer.
      static int int4​(java.io.RandomAccessFile raf)
      Read signed integer of 4 bytes from binary reader
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 构造器详细资料

      • Bytes2Number

        public Bytes2Number()
    • 方法详细资料

      • int4

        public static int int4​(int a,
                               int b,
                               int c,
                               int d)
        Convert four ints into a signed integer.
        参数:
        a - Highest int
        b - Higher middle int
        c - Lower middle int
        d - Lowest int
        返回:
        Integer value
      • int4

        public static int int4​(java.io.RandomAccessFile raf)
                        throws java.io.IOException
        Read signed integer of 4 bytes from binary reader
        参数:
        raf - RandomAccessFile
        返回:
        Signed integer
        抛出:
        java.io.IOException