当前位置:  开发笔记 > 编程语言 > 正文

整数到字符串转换

如何解决《整数到字符串转换》经验,为你挑选了1个好方法。

通常我在将整数转换为字符串时使用其中一种方法:

Integer.toString(i) 要么

String.valueOf(i) while i是整数值.

两种方式都是正确的吗?



1> Eran..:

两种方式都是一样的:

/**
 * Returns the string representation of the {@code int} argument.
 * 

* The representation is exactly the one returned by the * {@code Integer.toString} method of one argument. * * @param i an {@code int}. * @return a string representation of the {@code int} argument. * @see java.lang.Integer#toString(int, int) */ public static String valueOf(int i) { return Integer.toString(i); }

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有