Java.lang.Short 类

java.lang.Short.toString() 方法返回一个表示指定 Short 的新 String 对象。假定基数为 10。

语法

public static String toString(short s)

参数

s 指定要转换的短整型。

返回值

返回指定短整型的字符串表示形式。

异常

无。

示例:

在下面的示例中,java.lang.Short。 toString() 方法返回一个表示给定短整型的 String 对象。

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //创建一个短值
    short x = 25;

    //打印短值
    System.out.println("The short value is: " + x); 

    //创建并打印字符串
    //短值的表示
    String x_tostring = Short.toString(x);
    System.out.println("The string value of short is: " + x_tostring);   
  }
}

上述代码的输出将是:

The short value is: 25
The string value of short is: 25