I have an abstract class A of which the classes B and C are extending. I want to have a static variable in class A that I can get and set from B and C so that they access a shared value. Currently, using getters and setters B and C each have their own variable instance.
Honestly I don't care that much about good or bad practice, I just want to make it somehow work.