Groovy toString()方法

2018-12-29 16:20 更新

该方法用于获取表示Number对象的值的String对象。

如果方法采用原始数据类型作为参数,则返回表示原始数据类型值的String对象。

如果方法接受两个参数,则将返回第二个参数指定的基数中的第一个参数的String表示形式。

句法

String toString() 
static String toString(int i)

参数

i - 将返回字符串表示形式的int。

返回值

  • toString() - 此函数返回一个String对象,表示 this Integer的值。

  • toString(int i) - 这返回一个表示指定整数的String对象。

例子

下面是一个使用这个方法的例子 -

class Example { 
   static void main(String[] args) { 
      Integer x = 5;
		
      System.out.println(x.toString()); 
      System.out.println(Integer.toString(12)); 
   } 
}

当我们运行上面的程序,我们将得到以下结果 -

5 
12 
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号