当前位置: 移动技术网 > IT编程>脚本编程>Python > Python学习日记(二十三) 类命名空间和组合

Python学习日记(二十三) 类命名空间和组合

2019年09月05日  | 移动技术网IT编程  | 我要评论

沙隆达,宁安市邮编,东方地狱火txt

类命名空间

在一个类中它的函数(方法)属于动态属性,直接定义的变量属于静态属性

首先先定义一个类,并在这个类里面加入静态变量、属性等然后将一个对象实例化

class fighter:                                  #定义一个战机的类
    price = 5000                                #静态变量
    def __init__(self,name,speed,atk,hp):
        self.name = name
        self.speed = speed
        self.atk = atk
        self.hp = hp
    def attack(self):
        print('本次攻击造成了%s的伤害'%(self.atk))
f1 = fighter('j-20',1000,400,5000)
print(f1.__dict__)                              #{'name': 'j-20', 'speed': 1000, 'atk': 400, 'hp': 5000}

那如何修改一个静态属性,我们可以用类名.静态变量名等于我们想要赋值的内容就可以修改

fighter.price = 4500
print(fighter.__dict__)                #{'__module__': '__main__', 'price': 4500, 
                         '__init__': <function fighter.__init__ at 0x0000000002148950>,
                         'attack': <function fighter.attack at 0x0000000002148a60>,
                         '__dict__': <attribute '__dict__' of 'fighter' objects>,
                         '__weakref__': <attribute '__weakref__' of 'fighter' objects>, '__doc__': none}

如果我们用__dict__方法去修改结果是不行的

fighter.__dict__['price'] = 2500
print(fighter.__dict__)                   #typeerror: 'mappingproxy' object does not support item assignment

关系图:

当我们使用f1.price的时候,f1会先在自己的命名空间去找,它会发现自己的内存空间里没有这个price,然后在通过类对象指针找到fighter的命名空间,取得price这个变量

而fighter.price是直接从自己的命名空间中取得,找到就返回

注意:只有实例化出来的对象才能找到类,而类并不能找到每一个对象

 

如果我们想用实例化出来的一个对象去修改类里面的静态变量,该怎么做?

可以看出在这里直接修改这个静态变量我们并没有修改成功,而是在我们的这个self;'字典'里新增了一个price属性

f1.price = 4500
print(f1.__dict__)                     #{'name': 'j-20', 'speed': 1000, 'atk': 400, 'hp': 5000, 'price': 4500}
print(fighter.__dict__)                #{'__module__': '__main__', 'price': 5000, 
                         '__init__': <function fighter.__init__ at 0x0000000002448950>,                          'attack': <function fighter.attack at 0x0000000002448a60>,                          '__dict__': <attribute '__dict__' of 'fighter' objects>,                         '__weakref__': <attribute '__weakref__' of 'fighter' objects>, '__doc__': none}

那么再想用回类里面的静态变量的话只能删除price

del f1.price
print(f1.price)                                 #5000
print(f1.__dict__)                              #{'name': 'j-20', 'speed': 1000, 'atk': 400, 'hp': 5000}

对于像上面这种不可变数据类型而言,类变量最好用类操作

现在我们把这个静态变量改成列表的类型,可以看到我们运用修改索引值的方式成功修改了原来的列表的元素

class fighter:                                   #定义一个战机的类
    price = [5000]                                #静态变量
    def __init__(self,name,speed,atk,hp):
        self.name = name
        self.speed = speed
        self.atk = atk
        self.hp = hp
    def attack(self):
        print('本次攻击造成了%s的伤害'%(self.atk))
f1 = fighter('j-20',1000,400,5000)
f1.price[0] = 6000
print(f1.__dict__)          #{'name': 'j-20', 'speed': 1000, 'atk': 400, 'hp': 5000}
print(fighter.__dict__)     #{'__module__': '__main__', 'price': [6000], '__init__': <function fighter.__init__ at 0x00000000027d8950>,
                    'attack': <function fighter.attack at 0x00000000027d8a60>, 
                  '__dict__': <attribute '__dict__' of 'fighter' objects>,
                  '__weakref__': <attribute '__weakref__' of 'fighter' objects>, '__doc__': none}

这是因为像这种可变数据类型(列表),它所改变的值不影响它本身的内存地址,像price它所指向的还是列表这个内存地址,所以改变了它的内部的值不会有太大的影响

但是如果我们这样写的话就相当于开辟了一个新的内存空间存放新的列表了

f1.price = [6000]
print(f1.__dict__)          #{'name': 'j-20', 'speed': 1000, 'atk': 400, 'hp': 5000, 'price': [6000]}
print(fighter.__dict__)     #{'__module__': '__main__', 'price': [5000], '__init__': <function fighter.__init__ at 0x00000000025a8950>, 
                  'attack': <function fighter.attack at 0x00000000025a8a60>,
                  '__dict__': <attribute '__dict__' of 'fighter' objects>,
                  '__weakref__': <attribute '__weakref__' of 'fighter' objects>, '__doc__': none}

最后静态变量和函数名不要相同

一个例子:创建一个类,每实例化一个对象就计数,最终所有的对象都共享这个数据

class counter():
    count = 0
    def __init__(self):
        counter.count += 1
print(counter.count)    #0
c1 = counter()
print(counter.count)    #1
c2 = counter()
print(counter.count)    #2

绑定方法:

一个类没有__init__也可以实例化,self仍能把自己传给f1

class person:
    def fuc(self):
        print('walking...')
f1 = person()
print(f1.__dict__)  #{}
f1.fuc()            #walking...

现在再定义一个函数

def func():
    print('testing...')
class person:
    def fuc(self):
        print('walking...')
f1 = person()
print(func)         #<function func at 0x00000000027c8730>
print(person.fuc)   #<function person.fuc at 0x00000000027c8a60>
print(f1.fuc)       #<bound method person.fuc of <__main__.person object at 0x0000000002737a58>>
print(f1)           #<__main__.person object at 0x0000000002737a58>

当对象去调用方法的时候就是把里面的值传给这个方法那么他们之间就发生了一种绑定关系

import

当我们引入一个包的时候就相当于实例化了一个对象

 

组合

表示在一个类中以另外一个类的对象作为数据属性,称为类的组合

我们先声明三个类玩家的战机类、敌机的类和武器的类:

class fighter:                              #定义一个玩家战机的类
    def __init__(self,name,atk,hp,speed,money):
        self.name = name
        self.atk = atk
        self.hp = hp
        self.speed = speed
        self.money = 0
    def playerattack(self,enemyfighter):
        enemyfighter.hp -= self.atk

class enemyfighter:                         #定义个敌机的类
    def __init__(self,name,atk,hp,speed,kind):
        self.name = name
        self.atk = atk
        self.hp = hp
        self.speed = speed
        self.kind = kind
    def enemyfighterattack(self,fighter):
        fighter.hp -= self.atk

class weapon:                                #定义一个武器的类
    def __init__(self,name,atk,durability,price):
        self.name = name
        self.atk = atk
        self.durability = durability
        self.price = price

playerfighter1 = fighter('player1',200,1500,300,0)
boss1 = enemyfighter('lazerboss',1000,7000,50,'boss')
w1 = weapon('amr-123',1000,10,300)
print(w1.__dict__)                  #{'name': 'amr-123', 'atk': 1000, 'durability': 10, 'price': 300}
print(boss1.__dict__)               #{'name': 'lazerboss', 'atk': 1000, 'hp': 7000, 'speed': 50, 'kind': 'boss'}
print(playerfighter1.__dict__)      #{'name': 'player1', 'atk': 200, 'hp': 1500, 'speed': 300, 'money': 0}

如何将我们的装备装备到我们玩家的战机上?在玩家的身上写一个get_weapon函数让一个武器的对象作为参数传给这个函数,再让玩家或得到武器的这些属性

class fighter:                              #定义一个玩家战机的类
    def __init__(self,name,atk,hp,speed,money = 0):
        self.name = name
        self.atk = atk
        self.hp = hp
        self.speed = speed
        self.money = money
    def playerattack(self,enemyfighter):
        enemyfighter.hp -= self.atk
    def get_weapon(self,weapon):            #玩家获得武器属性的函数
        if self.money >= weapon.price:      #如果玩家的金钱大于武器的价格
           self.money -= weapon.price       
           self.weapon = weapon             #给玩家添加武器的属性
           self.hp += weapon.maxhp
           self.atk += weapon.atk
        else:
            print('余额不足请先充值!')

class enemyfighter:                         #定义个敌机的类
    def __init__(self,name,atk,hp,speed,kind):
        self.name = name
        self.atk = atk
        self.hp = hp
        self.speed = speed
        self.kind = kind
    def enemyfighterattack(self,fighter):
        fighter.hp -= self.atk

class weapon:                                #定义一个武器的类
    def __init__(self,name,atk,maxhp,durability,price):
        self.name = name
        self.atk = atk
        self.maxhp = maxhp
        self.durability = durability
        self.price = price

playerfighter1 = fighter('player1',200,1500,300,500)
boss1 = enemyfighter('lazerboss',1000,7000,50,'boss')
w1 = weapon('amr-123',1000,1000,10,300)
print(playerfighter1.__dict__)#{'name': 'player1', 'atk': 200, 'hp': 1500, 'speed': 300, 'money': 500}
playerfighter1.get_weapon(w1)
print(playerfighter1.__dict__)#{'name': 'player1', 'atk': 1200, 'hp': 2500, 'speed': 300, 'money': 200, 
                   'weapon':<__main__.weapon object at 0x000000000280d518>}

现在我们给武器设计一个招数,给怪物一个致命一击

class fighter:                              #定义一个玩家战机的类
    def __init__(self,name,atk,hp,speed,money = 0):
        self.name = name
        self.atk = atk
        self.hp = hp
        self.speed = speed
        self.money = money
    def playerattack(self,enemyfighter):
        enemyfighter.hp -= self.atk
    def get_weapon(self,weapon):            #玩家获得武器属性的函数
        if self.money >= weapon.price:      #如果玩家的金钱大于武器的价格
           self.money -= weapon.price
           self.weapon = weapon             #给玩家添加武器的属性
           self.hp += weapon.maxhp
           self.atk += weapon.atk
        else:
            print('余额不足请先充值!')

class enemyfighter:                         #定义个敌机的类
    def __init__(self,name,atk,hp,speed,kind):
        self.name = name
        self.atk = atk
        self.hp = hp
        self.speed = speed
        self.kind = kind
    def enemyfighterattack(self,fighter):
        fighter.hp -= self.atk

class weapon:                                #定义一个武器的类
    def __init__(self,name,atk,maxhp,durability,price):
        self.name = name
        self.atk = atk
        self.maxhp = maxhp
        self.durability = durability
        self.price = price
    def lazerbullet(self,enemyfighter,fighter):
        if self.durability > 0:
            enemyfighter.hp -= self.atk*2 + fighter.atk
            self.durability -= 5
        else:
            print('您的武器耐久度为0,不可再使用!请重新充值!')

playerfighter1 = fighter('player1',200,1500,300,500)
boss1 = enemyfighter('lazerboss',1000,7000,50,'boss')
w1 = weapon('amr-123',1000,1000,10,300)
#初始的怪物和玩家属性
print(boss1.__dict__)               #{'name': 'lazerboss', 'atk': 1000, 'hp': 7000, 'speed': 50, 'kind': 'boss'}
print(playerfighter1.__dict__)      #{'name': 'player1', 'atk': 200, 'hp': 1500, 'speed': 300, 'money': 500}
#玩家装备上武器后属性
playerfighter1.get_weapon(w1)
print(playerfighter1.__dict__)      #{'name': 'player1', 'atk': 1200, 'hp': 2500, 'speed': 300, 'money': 200, 
                       'weapon': <__main__.weapon object at 0x000000000280d518>} #第一回合玩家用武器大招攻击 playerfighter1.weapon.lazerbullet(boss1,playerfighter1) print(boss1.__dict__) #{'name': 'lazerboss', 'atk': 1000, 'hp': 3800, 'speed': 50, 'kind': 'boss'} #第二回合boss攻击玩家 boss1.enemyfighterattack(playerfighter1) print(playerfighter1.__dict__) #{'name': 'player1', 'atk': 1200, 'hp': 1500, 'speed': 300, 'money': 200,
                       'weapon': <__main__.weapon object at 0x000000000279d4a8>} #第三回合玩家用武器大招攻击 playerfighter1.weapon.lazerbullet(boss1,playerfighter1) print(boss1.__dict__)     #{'name': 'lazerboss', 'atk': 1000, 'hp': 600, 'speed': 50, 'kind': 'boss'} playerfighter1.weapon.lazerbullet(boss1,playerfighter1)     #您的武器耐久度为0,不可再使用!请重新充值! print(boss1.__dict__)     #{'name': 'lazerboss', 'atk': 1000, 'hp': 600, 'speed': 50, 'kind': 'boss'}

 

组合练习

1.用组合的方法求这个图形的面积,假设这里大圆半径为10,小圆半径为

from math import pi as p
class cicle:
    def __init__(self,r):
        self.r = r
    def s(self):
        return p*self.r**2
    def l(self):
        return 2*p*self.r
class ring:
    def __init__(self,outside_r,inside_r):
        self.outside_c = cicle(outside_r)
        self.inside_c = cicle(inside_r)
    def ret_s(self):
        return self.outside_c.s() - self.inside_c.s()
    def ret_l(self):
        return self.outside_c.l() + self.inside_c.l()
ring = ring(10,5)
print(ring.ret_s())         #235.61944901923448
print(ring.ret_l())         #94.24777960769379

2.创建一个老师类,老师有生日、课程,生日和课程可以是一个类,用组合的方式表示

class teacher:
    def __init__(self,name,age,gender,course,birthday):
        self.name = name
        self.age = age
        self.gender = gender
        self.course = course
        self.birthday = birthday
class course:
    def __init__(self,name,price,period):
        self.name = name
        self.price = price
        self.period = period
class birthday:
    def __init__(self,year,month,day):
        self.year = year
        self.month = month
        self.day = day
p1 = teacher('jackson',25,'male',course('python',15000,'7 months'),birthday(1994,6,12)) 
print(p1.__dict__)                                          #{'name': 'jackson', 'age': 25, 'gender': 'male', 
                                     'course': <__main__.course object at 0x00000000024ad390>,
                                     'birthday': <__main__.birthday object at 0x00000000024ad400>} print(p1.course.name,p1.course.price,p1.course.period) #python 15000 7 months print(p1.birthday.year,p1.birthday.month,p1.birthday.day) #1994 6 12

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网