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


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


用法:

    public String toString();
    public static String toString(long value);
    public static String toString(long value, int radix's);

Long类toString()方法

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

参数:

  • 在第一种情况 toString() 中,我们不传递任何参数或值。
  • 在第二种情况 toString(long value) 中,我们只传递一个参数longtype 它表示要转换的 long 值。
  • 在第三种情况 toString(long value, int radix's) 中,我们传递了两个参数longtype 表示要转换的long值和参数radix's表示要在字符串表示中使用的基数。

返回值:

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

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

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

例:

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

public class ToStringOfLongClass {
    public static void main(String[] args) {
        // Object initialization
        Long ob1 = new Long(100);
        Long ob2 = new Long(200);

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

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

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

        // It represents the string of the given long parameter with radix 20
        String value3 = Long.toString(ob2, 20);

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

输出

ob1:100
ob2:200
ob1.toString():100
Long.toString(ob2):200
Long.toString(ob2,20):a0


相关用法


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