Achei este código na internet, porém não entendi muito bem, alguém saberia explica-lo?
package teste;
import java.util.*;
class G {
public static void main(String args[]) {
Object a = new HashSet(), b = new HashMap();
Object c = new Hashtable();
System.out.print((a instanceof Collection) + ",");
System.out.print((b instanceof Collection) + ",");
System.out.print(c instanceof Collection);
}
}