Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 2.13 KB

File metadata and controls

28 lines (16 loc) · 2.13 KB

Mixin Class

Class that is intended to provide an optional interface or functionality to other classes, without having to be the parent class of those. How those other classes gain access to the mixin's method depends on the languge.

It's similar to an abstract class in that it's not intended to be instantiated.

Mixin classes require Multiple Inheritance, and are sometimes described as being "included" rather than "inherited".

Mixins encourage code reuse and can be used to avoid the inheritance ambiguity that multiple inheritance can cause (The diamond problem), or to work around lack of support for multiple inheritance in a language.

mixin

Definition

Mixins are a language concept that allows a programmer to inject some code into a class. Units of functionality are created in a class and then mixed in with other classes.

A Mixin Class acts as the parent class, containing the desired functionality. A Subclass can then inherit or simple reuse this functionality, but not as a means of specialization. Typically, the mixin will export the desired functionality to a child class, without creating a rigid, single "is a" relationship. Here lies the important difference between the concepts of mixins and inheritance, in that the child class can still inheirt all the features of the parent class, but, the semantincs about the child "being a kind of" the parent need not be necessarily applied.

Advantages

  1. Provides a mechanism for Multiple Inheritance by allowing multiple classes to use the common functionality, but without the complex semantic of multiple inheritance.
  2. Code Reusability: Mixins are useful when a programmer wants to share functionality between different classes. Instead of repeating the same code, the common functionality can simple be grouped into a Mixin and then included into each class that requires it.
  3. Mixins allow inheritance and use of only the desired features from the parent class, not necessarily all of them.

Examples