Java Unsigned Number Create unsign(byte b)

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

Description

unsign

License

Open Source License

Declaration

public static int unsign(byte b) 

Method Source Code

//package com.java2s;
/*//from w ww. java2s  .  c  o  m
 * Copyright 2002 Stewart Allen <stewart@neuron.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the Artistic License.
 */

public class Main {
    public static int unsign(byte b) {
        return b & 0xff;
    }
}

Related

  1. unsign(byte b)
  2. unsign(byte b)
  3. unsign(byte by)
  4. unsign(byte i)
  5. unsign(byte[] b)
  6. unsign(final byte b)