1. 程式人生 > 實用技巧 >面向物件-例項方法內通過self獲取物件

面向物件-例項方法內通過self獲取物件

在方法內通過self獲取物件屬性

class Hero(object):
    """定義了一個英雄類,可以移動和攻擊"""
    def move(self):
        """例項方法"""
        print("正在前往事發地點...")

    def attack(self):
        """例項方法"""
        print("發出了一招強力的普通攻擊...")

    def info(self):
        """在類的例項方法中,通過self獲取該物件的屬性"""
        print("英雄 %s 的生命值 :%d" % (self.name, self.hp))
        print("英雄 %s 的攻擊力 :%d" % (self.name, self.atk))
        print("英雄 %s 的護甲值 :%d" % (self.name, self.armor))


# 例項化了一個英雄物件 泰達米爾
taidamier = Hero()

# 給物件新增屬性,以及對應的屬性值
taidamier.name = "泰達米爾"  # 姓名
taidamier.hp = 2600  # 生命值
taidamier.atk = 450  # 攻擊力
taidamier.armor = 200  # 護甲值

# 通過.成員選擇運算子,獲取物件的例項方法
taidamier.info()  # 只需要呼叫例項方法info(),即可獲取英雄的屬性
taidamier.move()
taidamier.attack()