java.lang.Byte.toString(byte b)方法範例


java.lang.Byte.toString(byte b) 返回表示指定的位元組一個新的String物件。基數被假定為10。

宣告

以下是java.lang.Byte.toString()方法的宣告

public static String toString(byte b)

引數

  • b - 該位元組被轉換

返回值

此方法將返回指定位元組的字串表示形式。

異常

  • NA

例子

下面的例子顯示了lang.Byte.toString()方法的使用。

package com.yiibai;

import java.lang.*;

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