Is this duck-typing in Python?

て烟熏妆下的殇ゞ 提交于 2019-11-28 19:46:10
dansalmo

The code does not show the whole story. Duck typing is about trying something and handling exceptions if they occur. As long it quacks, treat it like a duck, otherwise, treat it differently.

try:
    dog.quack()
except AttributeError:
    dog.woof()

This behavior is explained at the top of the wikipedia Duck_typing article following a description of a non-duck-typed language:

In a duck-typed language, the equivalent function would take an object of any type and call that object's walk and quack methods. If the object does not have the methods that are called then the function signals a run-time error. If the object does have the methods, then they are executed no matter the type of the object, evoking the quotation and hence the name of this form of typing.

For your example:

class Person:
    def help(self):
        print("Heeeelp!")

class Duck:
    def help(self):
        print("Quaaaaaack!")

class SomethingElse:
    pass

def InTheForest(x):
    x.help()

donald = Duck()
john = Person()
who = SomethingElse()

for thing in [donald, john, who]:
    try:
        InTheForest(thing)
    except AttributeError:
        print 'Meeowww!'

output:

Quaaaaaack!
Heeeelp!
Meeowww!

Yes, this is duck typing, which Python code can (and often does) use.

http://en.wikipedia.org/wiki/Duck_typing#In_Python

Further up on the page there is a more complete example in Python:

class Duck:
    def quack(self):
        print("Quaaaaaack!")
    def feathers(self):
        print("The duck has white and gray feathers.")

class Person:
    def quack(self):
        print("The person imitates a duck.")
    def feathers(self):
        print("The person takes a feather from the ground and shows it.")
    def name(self):
        print("John Smith")

def in_the_forest(duck):
    duck.quack()
    duck.feathers()

def game():
    donald = Duck()
    john = Person()
    in_the_forest(donald)
    in_the_forest(john)

game()
Raphael Pr

When you are defining a method in Python, you have to provide the object on which it applies, which, in your case, is self.

Therefore you have to adapt your code with the following line to have the expected behaviour:

class Duck:
    def help(self):
        print("Quaaaaaack!")

class Person:
    def help(self):
        print("Heeeelp!")
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!