Java Byte toString()方法
java.lang.Byte.toString() 返回一个代表此字节的String对象的值。该值被转换为符号的十进制表示法,并以字符串形式返回,完全一样,如果字节值被赋予作为参数传递给了 toString(byte) 方法。
1 语法
public String toString()
2 参数
无
3 返回值
此方法将返回这个对象的基数为10的值的字符串表示形式。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Byte toString()方法
*/
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
热门文章
优秀文章