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
}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
}