我是靠谱客的博主 虚心小蘑菇,最近开发中收集的这篇文章主要介绍java character 比较,比较Java中的Character,Integer和类似类型:使用equals还是==?,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

I wanted to make sure about something in Java:

If I have a Character or an Integer or a Long and those sort of things, should I use equals or is == sufficient?

I know that with strings there are no guarantees that there is only one instance of each unique string, but I'm not sure about other boxed types.

My intuition is to use equals, but I want to make sure I'm not wasting performance.

解决方案

EDIT: The spec makes some guarantees for boxing conversions. From section 5.1.7:

If the value p being boxed is true,

false, a byte, a char in the range

u0000 to u007f, or an int or short

number between -128 and 127, then let

r1 and r2 be the results of any two

boxing conversions of p. It is always

the case that r1 == r2.

The implementation can use a larger pool, mind you.

I would really avoid writing code which relies on that though. Not because it might fail, but because it's not obvious - few people will know the spec that well. (I previously thought it was implementation-dependent.)

You should use equals or compare the underlying values, i.e.

if (foo.equals(bar))

or

if (foo.intValue() == bar.intValue())

Note that even if the autoboxing were guaranteed to use fixed values, other callers can always create separate instances anyway.

最后

以上就是虚心小蘑菇为你收集整理的java character 比较,比较Java中的Character,Integer和类似类型:使用equals还是==?的全部内容,希望文章能够帮你解决java character 比较,比较Java中的Character,Integer和类似类型:使用equals还是==?所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部