Showing posts with label java general. Show all posts
Showing posts with label java general. Show all posts

Tuesday, October 23, 2012

==, .equals(), compareTo(), and compare()

==
Compares references, not values. The use of == with object references is generally limited to the following:
Comparing to see if a reference is null.
Comparing two enum values. This works because there is only one object for each enum constant.
You want to know if two references are to the same object

equals()
Compares values for equality. Because this method is defined in the Object class, from which all other classes are derived, it's automatically defined for every class. However, it doesn't perform an intelligent comparison for most classes unless the class overrides it. It has been defined in a meaningful way for most Java core classes. If it's not defined for a (user) class, it behaves the same as ==.

It turns out that defining equals() isn't trivial; in fact it's moderately hard to get it right, especially in the case of subclasses. The best treatment of the issues is in Horstmann's Core Java Vol 1. [TODO: Add explanation and example]

compareTo()
Comparable interface. Compares values and returns an int which tells if the values compare less than, equal, or greater than. If your class objects have a natural order, implement the Comparable interface and define this method. All Java classes that have a natural ordering implement this (String, Double, BigInteger, ...).

compare()
omparator interface. Compares values of two objects. This is implemented as part of the Comparator interface, and the typical use is to define one or more small utility classes that implement this, to pass to methods such as sort() or for use by sorting data structures such as TreeMap and TreeSet. You might want to create a Comparator object for the following.

Multiple comparisions. To provide several different ways to sort somthing. For example, you might want to sort a Person class by name, ID, age, height, ... You would define a Comparator for each of these to pass to the sort() method.
System class. To provide comparison methods for classes that you have no control over. For example, you could define a Comparator for Strings that compared them by length.
Strategy pattern. To implement a Strategey pattern, which is a situation where you want to represent an algorithm as an object that you can pass as a parameter, save in a data structure, etc.

If your class objects have one natural sorting order, you may not need this.

Thursday, August 27, 2009

Java Tips

Java General Tips

 Unicode Characters are expressed as 4 character hex codes e.g. c = "\u45c7" .
 Scientific numerical literals such as 1E2 are assigned to double data types by default.
 The default type of any numeric literal with a decimal point is double.
 integer and long operations / and % can throw ArithmeticException whilst float / and % do not - not even with divide by zero.
 Negative binary numbers are the same as their positive equivalents 1 , with bits reversed.
 ( -1 >> anything ) = -1 and is always promoted to at least int type.
 ( -1 & anything ) = anything, since 1 is all 1 bits.
 The &sim operator is actually a typo in some books for "~" (bitwise integral inversion).
 In range literal assignments are allowed for byte , short and char primitive data types.
 The Math.random() method produces a number >= 0.0 and < 1.0 .
 Angles passed to Math.sin(), cos() or tan() are expressed in Radians.
 The Math class is immutable.
 The expression -0.0 == 0.0 returns true.
 Valid boolean literals are true¡± and false¡± only.
 The expression for ( ; ; ) { } is an infinite loop therefore it will compile.
 Static methods are called once at class load time.
 Static methods can not be overridden, nor can final methods.
 Methods may not have the same name as the constructor(s).
 Constructors CAN be private, as in the Math class - but it is not common.
 Constructors can throw ANY exception.
 Initializer blocks are executed in the order of their declaration.
 Instance initializers get executed ONLY IF the objects are constructed.
 The main() method can be declared final.
 Static methods can not use non-static features of the class. The main() method can not reference unqualified non-static methods.
 You can access and use static methods and variables e.g. Math.round() and Math.PI.
 Access modifiers dictate which classes NOT instances may access features.
 Access modifiers are only used on class level variables, with rare exceptions.
 (Local) Inner classes in methods can access final variables inside the enclosing method or its parameters. They may also access the non-static data of the enclosing class.
 Methods of a static inner class can not access instance variables of the enclosing class, only static ones.
 Inner classes can have any access modifier, but those defined within a method can not. Such a class is private to that block. Inner classes in a block may not be static.
 No inner class can have a static member.
 Garbage collection takes place (possibly) sometime after an object is no longer being used. Assign null to a variable when you have finished using it.
 A method of the form : public Object pop() { return storage[index--]; } will cause a memory leak.