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


Java Short toString()用法及代码示例


用法:

    public String toString();
    public static String toString(short value);

Short类toString()方法

  • toString() 方法可在java.lang包。
  • toString() 方法用于表示由此 Short 对象表示的 String。
  • toString(short value) 方法用于表示由给定的短类型参数表示的字符串。
  • 这些方法在 String 表示时不会抛出异常。
  • toString()是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • toString(int 值)是一个静态方法,它也可以通过类名访问,如果我们尝试使用类对象访问这个方法,那么我们也不会得到错误。

参数:

  • 在第一种情况 toString() 中,我们不传递任何参数或值。
  • 在第二种情况 toString(short value) 中,我们只传递一个参数shorttype 它代表要转换的短值。

返回值:

在第一种情况下,该方法的返回类型是String- 它返回此 Short 对象的字符串表示形式。

第二种情况,这个方法的返回类型是String- 它返回给定参数的字符串表示是短类型。

例:

// Java program to demonstrate the example 
// of toString () method of Short class

public class ToStringOfShortClass {
    public static void main(String[] args) {
        short s1 = 100;
        short s2 = 200;

        // Object initialization
        Short ob1 = new Short(s1);
        Short ob2 = new Short(s2);

        // Display ob1,ob2 values
        System.out.println("ob1:" + ob1);
        System.out.println("ob2:" + ob2);

        // It represents the string of this Short object
        String value1 = ob1.toString();

        // It represents the string of the given short parameter
        String value2 = Short.toString(ob2);

        // Display result values
        System.out.println("ob1.toString():" + value1);
        System.out.println("Short.toString(ob2):" + value2);
    }
}

输出

ob1:100
ob2:200
ob1.toString():100
Short.toString(ob2):200


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Short class toString() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。