Can I make a superclass's variable static final in subclass?

abstract class User {
       String about;
}
class Bots extend User {
        final static String about = "Bots are not humans"; // I think this replaces Superclass 's instance variable about
}
Was this page helpful?