当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。