toString 抽象方法

String toString()
override

返回该整数的字符串表示形式。

返回的字符串可通过parse进行解析。对于任何int i,都保证i == int.parse(i.toString())

实现

String toString();