Java - Byte toString() 方法



描述

Java Byte toString(byte b) 方法返回一个新的字符串对象,表示指定的字节。基数假定为 10。

声明

以下是 java.lang.Byte.toString() 方法的声明

public static String toString(byte b)

参数

b − 要转换的字节

返回值

此方法返回指定字节的字符串表示形式。

异常

获取正字节的字符串表示形式示例

以下示例演示了 Byte toString(byte) 方法的使用。我们创建了一个字节变量并为其赋值。然后创建一个字符串变量,并使用 Byte.toString(String) 方法打印字节值的字符串表示形式。

package com.tutorialspoint;
public class ByteDemo {
   public static void main(String[] args) {

      // create a byte primitive bt and asign value
      byte bt = 20;

      // create a String s
      String s;

      /**
       *  static method is called using class name. Assign 
       *  string representation of bt to s
       */
      s = Byte.toString(bt);

      String str = "String representation of byte primitive " +bt+ " is " +s;

      // print s value
      System.out.println( str );
   }
}

输出

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

String representation of byte primitive 20 is 20

获取负字节的字符串表示形式示例

以下示例演示了 Byte toString(byte) 方法的使用。我们创建了一个字节变量并为其赋值一个负值。然后创建一个字符串变量,并使用 Byte.toString(String) 方法打印字节值的字符串表示形式。

package com.tutorialspoint;
public class ByteDemo {
   public static void main(String[] args) {

      // create a byte primitive bt and asign value
      byte bt = -20;

      // create a String s
      String s;

      /**
       *  static method is called using class name. Assign 
       *  string representation of bt to s
       */
      s = Byte.toString(bt);

      String str = "String representation of byte primitive " +bt+ " is " +s;

      // print s value
      System.out.println( str );
   }
}

输出

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

String representation of byte primitive -20 is -20

获取零字节的字符串表示形式示例

以下示例演示了 Byte toString(byte) 方法的使用。我们创建了一个字节变量并为其赋值零。然后创建一个字符串变量,并使用 Byte.toString(String) 方法打印字节值的字符串表示形式。

package com.tutorialspoint;
public class ByteDemo {
   public static void main(String[] args) {

      // create a byte primitive bt and asign value
      byte bt = 0;

      // create a String s
      String s;

      /**
       *  static method is called using class name. Assign 
       *  string representation of bt to s
       */
      s = Byte.toString(bt);

      String str = "String representation of byte primitive " +bt+ " is " +s;

      // print s value
      System.out.println( str );
   }
}

输出

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

String representation of byte primitive 0 is 0
java_lang_byte.htm
广告