返回该整数的字符串表示形式。
返回的字符串可通过parse进行解析。对于任何int i,都保证i == int.parse(i.toString())。
int
i
i == int.parse(i.toString())
String toString();