You wouldn't be overriding it at all-you are just in a different scope.
If you were overriding hiding it, then it's a method in the parent class would see the new value feature of the child class "Scope". Any time you are in an instance of the child classa smaller scope, you can redefine all the variables you like and that wouldn't happen.the outer scope variables will be "Shadowed"
By the way, you can scope it again if you like:
public class A implements I {
public String KEY = "b";
public String getKey() {
String KEY = "c";
return KEY;
}
}
Now KEY will return "c";
Edited because the original sucked upon re-reading.
