Java Integer Create toInt(byte b)

Here you can find the source of toInt(byte b)

Description

to Int

License

Open Source License

Declaration

public static int toInt(byte b) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static int toInt(byte b) {
        return (int) b >= 0 ? b : (int) b + (int) Math.pow(2, 8);
    }/*  w  ww.  jav  a  2 s  .c  om*/
}

Related

  1. toInt(boolean flag)
  2. toInt(boolean value)
  3. toInt(boolean[] bits)
  4. toInt(byte b1, byte b2, byte b3, byte b4)
  5. toInt(byte byte0, byte byte1, byte byte2, byte byte3)
  6. toInt(byte byte3, byte byte2, byte byte1, byte byte0)
  7. toInt(byte in0, byte in1, byte in2, byte in3)