News

== operator in Java does not compare content of string variable, it compares references. So, if we want to check string content of variables, we had better use equals method instead of == operator for ...
Obi Ezechukwu 's blog High-Octane Java recently featured the post Compact Equals , which compares an implementation of a Java class's overridden equals method in traditional form versus one ...