How Does the toString(), ==, equals() object methods work differently or similarly on reference and primitive types?
|
For regular types (including String):
For (true) primitive types:
However this is complicated by the fact that in some contexts the Java language says that a primitive type can be "autoboxed" to give an instance of the primitive type's corresponding wrapper type; e.g.
The spanner in the works is illustrated by the following:
The reason that the last sometimes fails is that the JLS does NOT guarantee that autoboxing a given primitive value will always give the same wrapper object. It will in some cases (e.g. for small integers), and won't for others (e.g. large integers). The lesson to be learned from the example above is that you need to be very careful about using |
||||
|
|
|
For reference types, == will compare the actual reference (where in memory the object resides) where as the equals method performs a comparison of the data. |
|||
|
|
|
The primitives are autoboxed to their respective class (int to Integer, boolean to Boolean, etc.), so it is the method of the respective class that is used. |
|||
|
|
|
Primitives are boxed, and as such can be substituted by the corresponding object.
etc. See this article for a good introduction. Note that == will be slightly different as there are different implementations for objects vs. primitives, and reference equality may give unexpected results. |
||||
|
|
|
The '==' operator works on the primitive type you have, that in the case of reference objects is the reference itself. That is For primitive types, when calling a method, the type is previously converted (boxed) to a reference type and then the method is called. This means that for primitive types That is, to compare primitive type values you should use The same happens with the |
|||
|
|