Java - Short toString(int i) 方法



描述

Java Short toString(int i) 方法返回一个表示指定短整型的 String 对象。

声明

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

public static String toString(int i)

参数

i − 要转换的短整型。

返回值

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

异常

获取正短整型值的字符串表示形式示例

以下示例演示了如何使用 Short toString() 方法获取指定短整型值的字符串表示形式。我们创建了一个短整型变量并为其分配了一个正短整型值。然后使用 toString() 方法打印结果。

package com.tutorialspoint;

public class ShortDemo {
   public static void main(String[] args) {
      short i = 170;
      System.out.println("Number = " + i);
    
      /* returns the string representation of the given number */
      System.out.println("toString = " + Short.toString(i));
   }
}

输出

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

Number = 170
toString = 170

获取负短整型值的字符串表示形式示例

以下示例演示了如何使用 Short toString() 方法获取指定短整型值的字符串表示形式。我们创建了一个短整型变量并为其分配了一个负短整型值。然后使用 toString() 方法打印结果。

package com.tutorialspoint;

public class ShortDemo {
   public static void main(String[] args) {
      short i = -170;
      System.out.println("Number = " + i);
    
      /* returns the string representation of the given number */
      System.out.println("toString = " + Short.toString(i));
   }
}

输出

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

Number = -170
toString = -170

获取零短整型值的字符串表示形式示例

以下示例演示了如何使用 Short toString() 方法获取指定短整型值的字符串表示形式。我们创建了一个短整型变量并为其分配了一个零值。然后使用 toString() 方法打印结果。

package com.tutorialspoint;

public class ShortDemo {
   public static void main(String[] args) {
      short i = 0;
      System.out.println("Number = " + i);
    
      /* returns the string representation of the given number */
      System.out.println("toString = " + Short.toString(i));
   }
}

输出

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

Number = 0
toString = 0
java_lang_short.htm
广告