亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python Class:面向對象高級編程 __call__& callable()

發布時間:2020-04-08 10:15:58 來源:網絡 閱讀:849 作者:虎皮喵的喵 欄目:編程語言

官網解釋:

3.4.5. Emulating callable objects

  • object.__call__(self[args...])

  • Called when the instance is “called” as a function; if this method is defined, x(arg1, arg2, ...) is a shorthand for x.__call__(arg1,arg2, ...).

看得懂,但看不明白。。。。。真是硬傷。。。。


這兩天發文老是被審核,想不通,是不是我把廖某的全名打出來有人不爽????


為了更好理解,引用廖某的__call__程序與自己的__repr__ / __str__程序做比較:

#廖:__call__此程序的結果是輸出輸入的name
class Student1(object):
    def __init__(self, name):
        self.name = name

    def __call__(self):
        print('My name is %s.' % self.name)    

h = Student1('MumU')
print 'liao:', h        
           
#我:__repr__ / __str__ 此程序的結果也是輸出輸入的name
class Student2(object):
    def __init__(self, name):
        self.name = name

    def __str__(self):
        return 'Student2 name:%s'%self.name
    __repr__ = __str__        
    
l = Student2('U')
print 'me:', l

運行結果:

liao: <__main__.Student1 object at 0x7f5fea3108d0>
me: Student2 name:U

嗯,為啥Student1會輸出這樣呢???

再換一個試法:程序Class都沒改,只是輸出語句改了(標記:####)

#廖:__call__此程序的結果是輸出輸入的name
class Student1(object):
    def __init__(self, name):
        self.name = name

    def __call__(self):
        print('My name is %s.' % self.name)    

print Student1('MumU')   ####
           
#我:__repr__ / __str__ 此程序的結果也是輸出輸入的name
class Student2(object):
    def __init__(self, name):
        self.name = name

    def __str__(self):
        return 'Student2 name:%s'%self.name
    __repr__ = __str__        
    
print Student2('U')  ####

運行結果:

liao: <__main__.Student1 object at 0x7f13dc36b8d0>
me: Student2 name:U

嗯,還是一樣,想想也是,因為這輸出寫法和之前的是等價的。。。。于是我就想,如果__call__是調用自己的函數的話,那么要用函數就得。。。在末尾加()號?!

再試:只改了廖的輸出語句(標記:####)

#廖:__call__此程序的結果是輸出輸入的name
class Student1(object):
    def __init__(self, name):
        self.name = name

    def __call__(self):
        print('My name is %s.' % self.name)    

print Student1('MumU')()   ####
           
#我:__repr__ / __str__ 此程序的結果也是輸出輸入的name
class Student2(object):
    def __init__(self, name):
        self.name = name

    def __str__(self):
        return 'Student2 name:%s'%self.name
    __repr__ = __str__        
    
print Student2('U')

運行結果:

liao: My name is MumU.
None
me: Student2 name:U

敲你嗎,還真是函數。。。。

敲了這么多,蒙了也正常,換個普通的就懂了。

class Animal(object):
    def __init__(self, name):
        self.name = name
    
    def run(self):
        print '%s is running'%self.name
        
dog = Animal('dog')
print '當你要查看class的屬性name時:', dog.name
print '當你要查看class的方法(函數)時:', dog.run()

運行結果:

當你要查看class的屬性name時: dog
當你要查看class的方法(函數)時: dog is running
None

查看屬性是不加()號的, 使用方法(函數)時才需要。

至于為什么運行末尾都有個None??

Because,

dog.run()已經執行了一次print 了,

    def run(self):
        print '%s is running'%self.name

print '當你要查看class的方法(函數)時:', dog.run()

再次執行了一次,所以這個print 就只能輸出None了。


我真是太聰明了,哈哈哈哈哈


callable: 查看對象是否可調用,即是否為函數

print 'Student1 可調用??', callable(Student1('MumU'))       
print 'Student2 可調用??', callable(Student2('U'))

運行結果:

Student1 可調用?? True
Student2 可調用?? False


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

揭阳市| 锡林浩特市| 甘泉县| 泸西县| 剑川县| 怀仁县| 凉城县| 克什克腾旗| 广昌县| 宝兴县| 江阴市| 榆林市| 浦北县| 双鸭山市| 柳林县| 屯留县| 新巴尔虎左旗| 祁阳县| 保定市| 城固县| 临汾市| 榆中县| 阳谷县| 洛南县| 介休市| 石狮市| 广元市| 甘德县| 赣榆县| 邹城市| 石棉县| 永靖县| 麻栗坡县| 镇巴县| 互助| 峡江县| 遂平县| 缙云县| 南安市| 木兰县| 维西|