Duck typing in computer programming is application of the duck test--"If it walks like a duck and it quacks like a duck, then it must be a duck"--to determine if an object can be used for a particular purpose. With normal typing, suitability is determined by an object's type. In duck typing, an object's suitability is determined by the presence of certain methods and properties, rather than the type of the object itself.
Video Duck typing
Example
This is a simple example in Python 3 that demonstrates how any object may be used in any context, up until it is used in a way that it does not support.
Maps Duck typing
In statically typed languages
Certain usually statically typed languages such as Boo and the version 4 release of C# have extra type annotations that instruct the compiler to arrange for type checking of classes to occur at run-time rather than compile time, and include run-time type checking code in the compiled output.
Templates in C++ allow the language to use compile-time duck typing.
Comparison with other type systems
Structural type systems
Duck typing is similar to, but distinct from structural typing. Structural typing is a static typing system that determines type compatibility and equivalence by a type's structure, whereas duck typing is dynamic and determines type compatibility by only that part of a type's structure that is accessed during run time.
The OCaml, Scala, Go, Elm,, Gosu and PureScript languages support structural typing to varying degrees.
Protocols and Interfaces
Protocols and interfaces can provide some of the benefits of duck typing, but duck typing is distinct in that no explicit interface is defined. For example, if a third party library implements a class that cannot be modified, a client cannot use an instance of it with an interface unknown to that library even if the class does in fact satisfy the interface requirements. (A common solution to this problem is the Adapter pattern.) Duck typing would allow this. Again, all of an interface must be satisfied for compatibility.
Templates or generic types
Template, or generic functions or methods apply the duck test in a static typing context; this brings all the advantages and disadvantages of static versus dynamic type checking in general. Duck typing can also be more flexible in that only the methods actually called at run time need to be implemented, while templates require implementation of all methods that cannot be proven unreachable at compile time.
Examples include the languages C++ and D with templates, which developed from Ada generics.
Criticism
Criticism of the term itself
Use of the term "duck typing" has been considered superfluous in light of the fact that other terms, such as dynamic binding, express the concept more clearly. To proponents of static type checking, duck typing suggests the absence of typing, making its incorporation of the term typing appear incoherent.
See also
- Extension methods
- UFCS
- Loose coupling
- Monkey patch
References
Source of the article : Wikipedia