I came across the term duck typing while reading random topics on software online. Didn't although completely understood what it is?
|
|
It is a term used in dynamic languages that do not have strong typing. The idea is that you don't need a type in order to invoke an existing method on an object - if a method is defined on it, you can invoke it. The name comes from the phrase "If it looks like a duck and quacks like a duck, it's a duck". Wikipedia has much more information. |
|||||||||
|
|
Duck typing means that an operation does not formally specify the requirements that it's operands have to meet, but just tries it out with what is given. Unlike what others have said, this does not necessarily relate to dynamic languages or inheritance issues. Example task: Call some method Without using duck-typing, a function
Calling Another approach is structural typing - but again, the method
We could even write
in Haskell, where the So how does duck typing change this? Well, as I said, a duck typing system does not specify requirements but just tries if anything works. Thus, a dynamic type system as Python's always uses duck typing:
If But duck typing doesn't imply dynamic typing at all - in fact, there is a very popular but completely static duck typing approach that doesn't give any requirements too:
The function doesn't tell in any way that it wants some |
|||
|
|
|
Wikipedia has a fairly detailed explanation: http://en.wikipedia.org/wiki/Duck_typing
The important note is likely that with duck typing a developer is concerned more with the parts of the object that are consumed rather than what the actual underlying type is. |
|||
|
|