Duck typing in computer programming is an application of the
duck test
The duck test is a form of abductive reasoning, usually expressed as "If it looks like a duck, swims like a duck, and quacks like a duck, then it probably is a duck."
The test implies that a person can identify an unknown subject by observing t ...
—"If it walks like a duck and it quacks like a duck, then it must be a duck"—to determine whether an
object
Object may refer to:
General meanings
* Object (philosophy), a thing, being, or concept
** Object (abstract), an object which does not exist at any particular time or place
** Physical object, an identifiable collection of matter
* Goal, an ai ...
can be used for a particular purpose. With
nominative typing, an object is ''of a given type'' if it is declared to be (or if a type's association with the object is inferred through mechanisms such as
object inheritance
In object-oriented programming, inheritance is the mechanism of basing an Object (computer science), object or Class (computer programming), class upon another object (Prototype-based programming, prototype-based inheritance) or class (Class-based ...
). In duck typing, an object is ''of a given type'' if it has all
methods
Method ( grc, μέθοδος, methodos) literally means a pursuit of knowledge, investigation, mode of prosecuting such inquiry, or system. In recent centuries it more often means a prescribed process for completing a task. It may refer to:
*Scien ...
and properties required by that type. Duck typing can be viewed as a usage-based structural equivalence between a given object and the requirements of a type. See
structural typing for a further explanation of structural type equivalence.
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.
class Duck:
def swim(self):
print("Duck swimming")
def fly(self):
print("Duck flying")
class Whale:
def swim(self):
print("Whale swimming")
for animal in uck(), Whale() UCK may refer to:
*Ubuntu Customization Kit, a tool to create a customized Live CD of Ubuntu
*UCK, the National Rail code for Uckfield railway station
Uckfield railway station is the southern terminus of a branch of the Oxted Line in England, s ...
animal.swim()
animal.fly()
Output:
Duck swimming
Duck flying
Whale swimming
AttributeError: 'Whale' object has no attribute 'fly'
So, if we assume everything that can swim is a duck because ducks can swim, we will consider a whale to be a duck, but, if we also assume it has to be capable of flying, the whale won’t be considered to be a duck.
In statically typed languages
In some
statically typed
In computer programming, a type system is a logical system comprising a set of rules that assigns a property called a type to every "term" (a word, phrase, or other set of symbols). Usually the terms are various constructs of a computer progra ...
languages such as
Boo and
D, class type checking can be specified to occur at run time rather than compile time.
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
TypeScript,
Elm, and
Python languages support structural typing to varying degrees.
Protocols and interfaces
Protocols and interfaces provide a way to declare, explicitly, that some methods, operators, or behaviors need to be defined (e.g. must have a ''quack()'' method). 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. In contrast, under duck typing, the object would be accepted directly, without the need for an adaptor.
Templates or generic types
Template
Template may refer to:
Tools
* Die (manufacturing), used to cut or shape material
* Mold, in a molding process
* Stencil, a pattern or overlay used in graphic arts (drawing, painting, etc.) and sewing to replicate letters, shapes or designs
Co ...
, or
generic
Generic or generics may refer to:
In business
* Generic term, a common name used for a range or class of similar things not protected by trademark
* Generic brand, a brand for a product that does not have an associated brand or trademark, other ...
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 runtime'' need to be implemented, while templates require implementations of all methods that ''can not be proven
unreachable
In computer programming, unreachable memory is a Block (data storage), block of dynamic memory allocation, dynamically allocated memory where the computer program, program that allocated the memory no longer has any reachable pointer (computer ...
at compile time''.
In languages like Java, Scala, and Objective-C,
reflection can be used to inspect whether objects implement methods or even add necessary methods at runtime.
For example,
Java'
MethodHandle APIcan be used in this manner.
See also
*
Extension method
*
UFCS
Uniform Function Call Syntax (UFCS) or Uniform Calling Syntax (UCS) or sometimes Universal Function Call Syntax is a programming language feature in D and Nim that allows any function to be called using the syntax for method calls (as in object-o ...
*
Loose coupling
*
Monkey patch
*
Dynamic programming language
References
{{DEFAULTSORT:Duck Typing
Articles with example pseudocode
Object-oriented programming
Type theory
Articles with example Python (programming language) code