Bad Example:
public boolean equals(Object o) { Sample casted = (Sample)o; ... }
In this example a ClassCastException would be thrown which is discouraged for this method.