黑马程序员技术交流社区
标题:
【上海校区】动态给类和对象添加属性和方法
[打印本页]
作者:
不二晨
时间:
2019-3-8 10:15
标题:
【上海校区】动态给类和对象添加属性和方法
动态给类和对象添加属性和方法
动态给类和对象添加属性
定义一个Person类
class Person(object):
def __init__(self, name):
self.name = name
1
2
3
4
给对象添加属性
# 创建2个Person,分别为p1,p2
p1 = Person('amy')
print(p1.name)
p1.age = 10 # 给p1对象添加属性
print(p1.age) # 输出10
p2 = Person('anne')
print(p2.name)
p2.age = 18 # 给p2对象添加属性
print(p2.age) # 输出18
1
2
3
4
5
6
7
8
9
10
11
12
13
给类添加属性
Person.sex = 'female'
print(p1.sex) # 输出 female
print(p2.sex) # 输出 female
p2.sex = 'male'
print(p2.sex) # 输出 male
1
2
3
4
5
6
7
8
9
10
11
动态给类和对象添加方法
动态给类添加方法
# 在类的外部定义一个sleep函数
def sleep(self):
print('%s sleep' % (self.name))
Person.sleep = sleep
Person.sleep(p1) # 输出 amy sleep
Person.sleep(p2) # 输出 anne sleep
1
2
3
4
5
6
7
8
9
10
11
12
给对象添加方法
import types # 如果是给对象动态添加方法,需要导入types模块
def eat(self):
print('%s eat' % (self.name))
p.eat = types.MethodType(eat, p) # 调用MethodType()函数,参数1:方法名,参数2:对象名
p.eat() # 输出 amy eat
---------------------
【转载】
作者:张行之
来源:CSDN
原文:
https://blog.csdn.net/qq_33689414/article/details/78295656
版权声明:本文为博主原创文章,转载请附上博文链接!
作者:
不二晨
时间:
2019-3-11 15:24
奈斯,感谢分享
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2