Method overriding
- by Gandalf StormCrow
Can you override method in java without using annotations? Because eclipse doesn't support it if you use JRE6, you need to switch back to 5 to use @Override annotation. Will this method be overriden if I remove the annotation?
@Override public String toString() {
return name + " [" + genre + "]";
}