For example, inheriting a “static class” doesn’t m...
# getting-started
o
For example, inheriting a “static class” doesn’t make its own copy of a state. If you have
BaseStatic
class with static members and state, then
OneStatic extends BaseStatic
and
TwoStatic extends BaseStatic
share the state. So reusing such “static” code is hard.