Java 简明教程

Java - Byte class with Examples

Introduction

Java Byte 类用一个对象包装一个基本类型的字节值。类型为 Byte 的对象包含一个类型为字节的字段。

Class Declaration

以下是对 java.lang.Byte 类的声明 −

public final class Byte
   extends Number
      implements Comparable<Byte>

Field

以下是 java.lang.Byte 类的字段 −

  1. static byte MAX_VALUE − 这是保存一个字节可以具有的最大值的常量,27-1。

  2. static byte MIN_VALUE − 这是保存一个字节可以具有的最小值的常量,-27。

  3. static int SIZE − 这是用于以二进制补码形式表示字节值的位数。

  4. static Class&lt;Byte&gt; TYPE − 这是表示原始类型字节的类实例。

Class constructors

Class methods

Methods inherited

此类从以下类中继承方法:

  1. java.lang.Object

Example

以下示例演示了 Byte 类用于获取来自字符串的字节的用法。

package com.tutorialspoint;

public class ByteDemo {

   public static void main(String[] args) {

      // create a String s and assign value to it
      String s = "+120";

      // create a Byte object b
      Byte b;

      // get the value of byte from string
      b = Byte.valueOf(s);

      // print the value
      System.out.println( "Byte value of string " + s + " is " + b );
   }
}

让我们编译并运行上述程序,这将生成以下结果 −

Byte value of string +120 is 120