⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 byte.java

📁 轻量嵌入JVM,可用于掌上设备手机等手持消息设备.
💻 JAVA
字号:
/************************************************************************This file is part of java core libraries for the simpleRTJ virtual machine.This file is covered by the GNU GPL with the following exception:  As a special exception, the copyright holders of this library give you permission  to link this library with independent modules to produce an executable, regardless  of the license terms of these independent modules, and to copy and distribute the  resulting executable under terms of your choice, provided that you also meet, for  each linked independent module, the terms and conditions of the license of that  module. An independent module is a module which is not derived from or based on  this library. If you modify this library, you may extend this exception to your  version of the library, but you are not obligated to do so. If you do not wish  to do so, delete this exception statement from your version.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESSOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OFMERCHANTABILITY,  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL RTJ COMPUTING BE LIABLE FOR ANY CLAIM, DAMAGESOR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OROTHER DEALINGS IN THE SOFTWARE.Created/modified by:    RTJ Computing***********************************************************************/package java.lang;/** * Encapsulates <strong>byte</strong> java primitive type. * * For detailed description of this class see the Java language documentation. */final public class Byte extends Number{    final public static byte MIN_VALUE = -0x80;    final public static byte MAX_VALUE = 0x7F;    private byte val;    public Byte(String s) throws NumberFormatException    {        this(parseByte(s));    }    public Byte(byte value)    {        val = value;    }    public static Byte decode(String nm) throws NumberFormatException    {        byte val;        if (nm.value[nm.offset] == '#')        {            val = parseByte(nm.substring(1), 16);        }        else if (nm.value[nm.offset] == '0')        {            if ((nm.count > 1) && (nm.value[nm.offset+1] == 'x'))            {                val = parseByte( nm.substring(2), 16);            }            else            {                val = parseByte(nm.substring(1), 8);            }        }        else        {            val = parseByte(nm.substring(1), 10);        }        return new Byte(val);    }    public boolean equals(Object obj)    {        try        {            if (((Byte)obj).val == val)            {                return true;            }        }        catch (ClassCastException e) {}        return false;    }    public float floatValue()    {        return (float)val;    }    public int hashCode()    {        return val;         // What should this be do you suppose ???    }    public byte byteValue()    {        return val;    }    public short shortValue()    {           return (short)val;    }    public int intValue()    {        return (int)val;    }    public static byte parseByte(String s) throws NumberFormatException    {        return parseByte(s, 10);    }    public static byte parseByte(String s, int radix) throws NumberFormatException    {        return (byte)Integer.parseInt(s, radix);    }    public String toString()    {        return toString(val);    }    public static String toString(byte s)    {        return Integer.toString((int)s);    }    public static Byte valueOf(String s) throws NumberFormatException    {        return new Byte(parseByte(s));    }    public static Byte valueOf(String s, int radix) throws NumberFormatException    {        return new Byte(parseByte(s, radix));    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -