Android Byte to Int Convert makeInt(byte b3, byte b2, byte b1, byte b0)

Here you can find the source of makeInt(byte b3, byte b2, byte b1, byte b0)

Description

make Int

Declaration

static private int makeInt(byte b3, byte b2, byte b1, byte b0) 

Method Source Code

//package com.java2s;

public class Main {
    static private int makeInt(byte b3, byte b2, byte b1, byte b0) {
        return (int) ((((b3 & 0xff) << 24) | ((b2 & 0xff) << 16)
                | ((b1 & 0xff) << 8) | ((b0 & 0xff) << 0)));
    }/*from   w  w w .  ja  va 2 s .  co  m*/
}

Related

  1. getInt(byte b1, byte b2)
  2. getInt(byte b1, byte b2, byte b3, byte b4)