當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Byte toString()用法及代碼示例


Byte類的toString()方法是Java中的內置方法,用於返回String值。

public String toString()

sybtax:

ByteObject.toString()

返回值:它返回一個String對象,其值等於ByteObject的值。


下麵是toString()方法的實現:

// Java code to implement 
// toString() method of Byte class 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // byte value 
        byte value = 19; 
  
        // creating a byte Object 
        Byte b = new Byte(value); 
  
        // toString() method in Byte class 
        String output = b.toString(); 
  
        // printing the output 
        System.out.println(output); 
    } 
}
輸出:
19

public static String toString()

用法:

Byte.toString(byte b)

參數:它采用字節值b作為要轉換為String的參數。

返回類型:它返回一個String對象,其值等於字節“ b”的值。

下麵是toString()方法的實現:

// Java code to implement 
// toString() method of Byte class 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // byte value 
        byte value = 19; 
  
        // toString() method og Byte class 
        String output = Byte.toString(value); 
  
        // printing the output 
        System.out.println(output); 
    } 
}
輸出:
19


相關用法


注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 Byte toString() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。