Are class variables inherited?

Technology CommunityCategory: RubyAre class variables inherited?
VietMX Staff asked 3 years ago

No. The behavior is different than inheritance. Any alteration of a class variable by a subclass affects that class variable in the superclass and all other subclasses of the superclass.