包装类提供的静态方法是否经常使用?
我很好奇包装类的静态方法是否真的有用。
其中哪些最有用且最常用?您能介绍一下涉及这些方法的任何必须知道的技巧吗?
提前致谢。
I'm curious if static methods of wrapper classes are really helpful.
Which of them are most useful and popularly used? Can you present any must-know tricks involving these methods?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
compare
方法对于处理原始对应项非常有用。可能的用途:
The
compare
methods are useful to handle the primitive counterparts.Possible use:
Integer.parseInt(..)
被大量使用。不过我没有统计数据。我已经使用了其中的一半,当然它们在某些情况下都是有用的。Integer.parseInt(..)
is used a lot. I don't have statistics though. I've used half of them, but of course they are all useful in certain contexts.Integer.toString(...)
用于将整数转换为字符串,而无需借助"" + i
。Integer.toString(...)
is used for turning an integer to string without resorting to"" + i
.