類的實現(xiàn)
創(chuàng)新互聯(lián)網(wǎng)站建設公司,提供網(wǎng)站設計制作、網(wǎng)站設計,網(wǎng)頁設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;可快速的進行網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,是專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!class Cat:
"""貓科動物類"""
tag='我是家貓 '
def __init__ (self,name,age=0): #沒有默認值必須要傳,且寫在前面
self.name=name
self.__age=age #私有變量,外部不能引用設置更改
def set_age(self,age):
self.__age=age
return self.__age
def show_info(self):
rest="我叫:{0},今年{1}歲".format(self.name,self.__age)
print(rest)
return rest
def eat(self):
print('喜歡吃魚')
def catch(self):
print('喜歡抓老鼠')
實例化
if __name__=='__main__':
cat_black=cat('小黑',2)
cat_black.eat()
cat_black.show_info()
類的實例判斷 :isinstance(cat_black,Cat)