Java Short toString()方法
java.lang.Short.toString(short s) 方法返回一个表示指定short基数被假定为10的一个新String对象。
1 语法
public static String toString(short s)
2 参数
s : 这是short将用于被转换。
3 返回值
此方法返回指定short的字符串表示形式。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Short toString()方法
*/
import java.lang.*;
public class ShortDemo {
public static void main(String[] args) {
// create short object and assign value to it
short sval = 50;
Short shortValue = new Short(sval);
// returns a String object representing this Short value.
System.out.println("Value is = " + shortValue.toString());
// returns a String object representing the specified short
System.out.println("Value of specified short is = "
+ Short.toString((short)sval));
}
}
输出结果为:
Value is = 50
Value of specified short is = 50
热门文章
优秀文章