public class mainB {
public mainB(){
System.out.println("java".hashCode());
}
@Override
public int hashCode() {
return 4;
}
public static void main(String[] args){
new mainB();
}
}
I'm overriding the hashCode method but when I run app it doesn't show 4. What is the problem?
