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


Java Java.lang.Byte.toString()用法及代码示例



描述

这个java.lang.Byte.toString()返回表示此 Byte 值的 String 对象。该值被转换为有符号十进制表示并作为字符串返回,就像字节值作为 toString(byte) 方法的参数给出一样。

声明

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

public String toString()

覆盖

类中的 toStringObject

参数

NA

返回值

此方法返回以 10 为基数的此对象值的字符串表示形式。

异常

NA

示例

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

package com.tutorialspoint;

import java.lang.*;

public class ByteDemo {

   public static void main(String[] args) {

      // create 2 Byte objects b1, b2
      Byte b1, b2;

      // create 2 String's s1,s2
      String s1, s2;

      // assign values to b1, b2
      b1 = new Byte("123");
      b2 = new Byte("-123");

      // assign toString values of b1, b2 to s1, s2
      s1 = b1.toString();
      s2 = b2.toString();

      String str1 = "String value of Byte " + b1 + " is " + s1;
      String str2 = "String value of Byte " + b2 + " is " + s2;

      // print s1, s2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

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

String value of Byte 123 is 123
String value of Byte -123 is -123

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Byte.toString() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。