python如何实现函数多态性 python 函数多态

主机教程 建站分享 2年前 (2022-11-05) 194次浏览

文章摘要:python如何实现函数多态性 python 函数多态

在python实现函数的多态性,具体方法如下: def remove_user(self,user_or_us […]

在python实现函数的多态性,具体方法如下:

def remove_user(self,user_or_username):

try:

#If user_or_username is a User object

username = user_or_username.name

except AttributeError: #Oops -- didn't works. ask forgiveness ;-)

#If user_or_username is a string

username = user_or_username

remote.remove(username)


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python如何实现函数多态性 python 函数多态
文章链接:http://www.7966.org/post/14034.html
转载请注明出处

喜欢 (0)