I have strange bug in my code. I have variable type and when I load that from class Settings ( implements persistable ) it has value "CPU 21" (type="CPU 21"), but when I try if(type=="CPU 21") the condition is false. How is that possible ?
|
|
You have to use
This is because the You may also find that people often write this the other way around:
This means the same thing, but will not throw an exception if |
|||
|
It's not a bug at all. It's the way that == works. For reference types (such as string), "==" will always compare the references directly. If you have two references which refer to separate objects with equal content, then "==" will evaluate to false. Use Note that it's easy to fool yourself by using String literals, which are interned:
Now
Now |
|||
|
|
you need to use
with
== will compare two reference variable. while equals will check the object's equality Also See |
||||
|
What is difference between equals() and == ? Explanation : 1 They both differ very much in their significance. equals() method is present in the java.lang.Object class and it is expected to check for the equivalence of the state of objects! That means, the contents of the objects. Whereas the '==' operator is expected to check the actual object instances are same or not. For example, lets say, you have two String objects and they are being pointed by two different reference variables s1 and s2.
Now, if you use the "equals()" method to check for their equivalence as
You will get the output as TRUE as the 'equals()' method check for the content equivality. Lets check the '==' operator..
Now you will get the FALSE as output because both s1 and s2 are pointing to two different objects even though both of them share the same string content. It is because of 'new String()' everytime a new object is created. Try running the program without 'new String' and just with
You will get TRUE for both the tests. Explanation : 2 By definintion, the objects are all created on the heap. When you create an object, say,
We have 2 objects with exactly the same contents, lets assume. We also have 2 references, lets say ob1 is at address 0x1234 and ob2 is at address 0x2345. Though the contents of the objects are the same, the references differ. Using == compares the references. Though the objects, ob1 and ob2 are same internally, they differ on using this operation as we comare references. ob1 at address 0x1234 is compared with ob2 at address 0x2345. Hence, this comparison would fail. object.equals() on the other hand compares the values. Hence, the comparison between ob1 and ob2 would pass. Note that the equals method should be explicitly overridden for this comparison to succeed. |
|||
|
|