词条 | Mixin |
释义 |
In object-oriented programming languages, a mixin (or mix-in)[1][2][3][4] is a class that contains methods for use by other classes without having to be the parent class of those other classes. How those other classes gain access to the mixin's methods depends on the language. Mixins 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[1] (the "diamond problem"), or to work around lack of support for multiple inheritance in a language. A mixin can also be viewed as an interface with implemented methods. This pattern is an example of enforcing the dependency inversion principle. HistoryMixins first appeared in the Symbolics's object-oriented Flavors system (developed by Howard Cannon), which was an approach to object-orientation used in Lisp Machine Lisp. The name was inspired by Steve's Ice Cream Parlor in Somerville, Massachusetts:[2] The owner of the ice cream shop offered a basic flavor of ice cream (vanilla, chocolate, etc.) and blended in a combination of extra items (nuts, cookies, fudge, etc.) and called the item a "mix-in", his own trademarked term at the time.[3] DefinitionMixins are a language concept that allows a programmer to inject some code into a class. Mixin programming is a style of software development, in which units of functionality are created in a class and then mixed in with other classes.[4] A mixin class acts as the parent class, containing the desired functionality. A subclass can then inherit or simply 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 inherit all the features of the parent class, but, the semantics about the child "being a kind of" the parent need not be necessarily applied. Advantages
ImplementationsIn Simula, classes are defined in a block in which attributes, methods and class initialization are all defined together; thus all the methods that can be invoked on a class are defined together, and the definition of the class is complete. In Flavors, a mixin is a class from which another class can inherit slot definitions and methods. The mixin usually does not have direct instances. Since a Flavor can inherit from more than one other Flavor, it can inherit from one or more mixins. Note that the original Flavors did not use generic functions. In New Flavors (a successor of Flavors) and CLOS, methods are organized in "generic functions". These generic functions are functions that are defined in multiple cases (methods) by class dispatch and method combinations. CLOS and Flavors allow mixin methods to add behavior to existing methods: An example is the In an OOPSLA 90 paper,[8] Gilad Bracha and William Cook reinterpret different inheritance mechanisms found in Smalltalk, Beta and CLOS as special forms of a mixin inheritance. Programming languages that use mixinsOther than Flavors and CLOS (a part of Common Lisp), some languages that use mixins are:
Some languages do not support mixins on the language level, but can easily mimic them by copying methods from one object to another at runtime, thereby "borrowing" the mixin's methods. This is also possible with statically typed languages, but it requires constructing a new object with the extended set of methods. Other languages that do not support mixins can support them in a round-about way via other language constructs. C# and Visual Basic .NET support the addition of extension methods on interfaces, meaning any class implementing an interface with extension methods defined will have the extension methods available as pseudo-members. ExamplesIn Common LispCommon Lisp provides mixins in CLOS (Common Lisp Object System) similar to Flavors.
There is a method for objects of class button that computes the width based on the length of the button text. A There is a method computing the width of the border. Here it is just 4.
We can now compute the width of a button. Calling We can also compute the width of a In PythonIn Python, the the In this usage example, the mixins provide alternative underlying functionality without affecting the functionality as a socket server. In RubyMost of the Ruby world is based around mixins via Example: In JavaScriptThe Object-Literal andextend ApproachIt is technically possible to add behavior to an object by binding functions to keys in the object. However, this lack of separation between state and behavior has drawbacks:
An extend function is used to mix the behavior in:[14] Mixin with using Object.assign()The pure function and delegation based Flight-Mixin ApproachEven though the firstly described approach is mostly widespread the next one is closer to what JavaScript's language core fundamentally offers - Delegation. Two function object based patterns already do the trick without the need of a third party's implementation of In other languagesIn the Curl web-content language, multiple inheritance is used as classes with no instances may implement methods. Common mixins include all skinnable Interfaces and traitsJava 8 introduces a new feature in the form of default methods for interfaces.[15] Basically it allows a method to be defined in an interface with application in the scenario when a new method is to be added to an interface after the interface class programming setup is done. To add a new function to the interface means to implement the method at every class which uses the interface. Default methods help in this case where they can be introduced to an interface any time and have an implemented structure which is then used by the associated classes. Hence default methods adds a possibility of applying the concept in a mixin sort of a way. Interfaces combined with aspect-oriented programming can also produce full-fledged mixins in languages that support such features, such as C# or Java. Additionally, through the use of the marker interface pattern, generic programming, and extension methods, C# 3.0 has the ability to mimic mixins. With C# 3.0 came the introduction of Extension Methods[2] and they can be applied, not only to classes but, also, to interfaces. Extension Methods provide additional functionality on an existing class without modifying the class. It then becomes possible to create a static helper class for specific functionality that defines the extension methods. Because the classes implement the interface (even if the actual interface doesn’t contain any methods or properties to implement) it will pick up all the extension methods also.[16][17][18] ECMAScript (in most cases implemented as JavaScript) does not need to mimic object composition by stepwise copying fields from one object to another. It natively[19] supports Trait and mixin[20][21] based object composition via function objects that implement additional behavior and then are delegated via In ScalaScala has a rich type system and Traits are a part of it which helps implement mixin behaviour. As their name reveals, Traits are usually used to represent a distinct feature or aspect that is normally orthogonal to the responsibility of a concrete type or at least of a certain instance.[22] For example, the ability to sing is modeled as such an orthogonal feature: it could be applied to Birds, Persons, etc. Here, Bird has mixed in all methods of the trait into its own definition as if class Bird had defined method sing() on its own. As Scala allows mixing in a trait (creating an anonymous type) when creating a new instance of a class. In the case of a Person class instance, not all instances can sing. This feature comes use then: In SwiftMixin can be achieved in Swift by using a language feature called Default implementation in Protocol Extension. See also
References1. ^{{cite book|last=Boyland|first=John|title=ECOOP '96, Object-oriented Programming: 10th European Conference|publisher=Springer|isbn=9783540614395|pages=16–17|url=https://books.google.com/books?id=sGvtaGy8SJ8C&pg=PA16&lpg=PA16&dq=pathologies+of+multiple+inheritance&source=bl&ots=sF3Ah-XZSq&sig=JG7VV5hrjm781yqT5iGHSnlLI0I&hl=en&ei=Obi-TuLMCebV0QHD9bnyBA&sa=X&oi=book_result&ct=result&resnum=2&ved=0CCMQ6AEwAQ#v=onepage&q&f=false|author2=Giuseppe Castagna|editor=Pierre Cointe|accessdate=17 January 2014|chapter=Type-Safe Compilation of Covariant Specialization: A Practical Case|date=26 June 1996}} 2. ^1 Using Mix-ins with Python 3. ^1 Mix-Ins (Steve's ice cream, Boston, 1975) {{webarchive|url=https://web.archive.org/web/20071026043218/http://listserv.linguistlist.org/cgi-bin/wa?A2=ind0208a&L=ads-l&P=11751 |date=2007-10-26 }} 4. ^http://c2.com/cgi/wiki?MixIn 5. ^http://culttt.com/2015/07/08/working-with-mixins-in-ruby/ 6. ^http://naildrivin5.com/blog/2012/12/19/re-use-in-oo-inheritance.html 7. ^http://justinleitgeb.com/ruby/moving-beyond-mixins/ 8. ^OOPSLA '90, Mixin based inheritance (pdf) 9. ^{{cite web | url = http://concatenative.org/wiki/view/Factor/Features/The%20language | title = Factor/Features/The language | author = slava | date = 2010-01-25 | publisher = concatenative.org | quote = Factor's main language features: … Object system with Inheritance, Generic functions, Predicate dispatch and Mixins | accessdate = 2012-05-15}} 10. ^{{cite web |url=http://docs.scala-lang.org/tutorials/tour/mixin-class-composition.html | title=Mixin Class Composition |publisher=École polytechnique fédérale de Lausanne |accessdate=16 May 2014}} 11. ^Mixin classes in XOTcl 12. ^[https://hg.python.org/cpython/file/3.5/Lib/socketserver.py Source code for SocketServer in CPython 3.5] 13. ^http://raganwald.com/2014/04/10/mixins-forwarding-delegation.html 14. ^http://bob.yexley.net/dry-javascript-with-mixins/ 15. ^https://docs.oracle.com/javase/tutorial/java/IandI/defaultmethods.html 16. ^1 Implementing Mix-ins with C# Extension Methods 17. ^1 I know the answer (it's 42) : Mix-ins and C# 18. ^Mixins, generics and extension methods in C# 19. ^The many talents of JavaScript for generalizing Role Oriented Programming approaches like Traits and Mixins, April 11, 2014. 20. ^Angus Croll, A fresh look at JavaScript Mixins, published May 31, 2011. 21. ^[https://github.com/petsel/javascript-code-reuse-patterns/tree/master/source/components/composition/ JavaScript Code Reuse Patterns], April 19, 2013. 22. ^https://gleichmann.wordpress.com/2009/07/19/scala-in-practice-traits-as-mixins-motivation External links
1 : Object-oriented programming languages |
随便看 |
|
开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。