给Python的类和对象动态增加属性和方法 | Python 主题月

简介: 通常我们会将编程语言分为静态和动态。静态语言的变量是在内存中的有类型的且不可变化的,除非强制转换它的类型;动态语言的变量是指向内存中的标签或者名称,其类型在代码运行过程中会根据实际的值而定。Python就是典型的动态语言。

通常我们会将编程语言分为静态和动态。静态语言的变量是在内存中的有类型的且不可变化的,除非强制转换它的类型;动态语言的变量是指向内存中的标签或者名称,其类型在代码运行过程中会根据实际的值而定。Python就是典型的动态语言。


动态添加属性


当类或者对象的属性在需要增加的时候,对于不方便修改源码的情况下,我们可以选择动态的对其添加属性。


动态给对象添加属性


对象属性只在当前对象生效,在其他对象中是无法调用的。

定义一个类:


class Student(object):
    def __init__(self,name,age):
        self.name=name
        self.age=age
复制代码


执行:(给实例添加数学成绩属性并且初始化)


>>> from payhlib import Student 
>>> s=Student('phyger',18) 
>>> s.name
'phyger'
>>> s.age
18
>>> s.math_score=100
>>> s.math_score    
100
>>> ss=Student('xiaopang',28)
>>> ss.name
'xiaopang'
>>> ss.age 
28
>>> ss.math_score
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'Student' object has no attribute 'math_score'
>>>
复制代码


动态给类添加属性


类属性在其所有的对象中都生效。


执行:(默认所有对象的音乐成绩为60,当然你也可以对其进行修改)


>>> from payhlib import Student
>>> Student.music_score=60
>>> s1=Student('phyger',19) 
>>> s1.name
'phyger'
>>> s1.age
19
>>> s1.music_score
60
>>> s2=Student('xiaopang',29)
>>> s2.music_score
60
>>>
复制代码


动态添加方法


当类或者对象的方法在需要增加的时候,对于不方便修改源码的情况下,我们可以选择动态的对其添加方法。


动态给对象添加方法


给对象添加的方法只绑定在当前对象上,不对其他对象生效,而且需要传入self参数。

执行:(通过types.MethodType方法给a对象绑定sayhi方法)


>>> from payhlib import Student
>>> a=Student('phyger',17) 
>>> def sayhi(self):
...     print('hi...')
... 
>>> a.sayhi()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'Student' object has no attribute 'sayhi'
>>> import types  
>>> a.sayhi=types.MethodType(sayhi,a)
>>> a.sayhi()
hi...
>>> b=Student('xiaopang',27) 
>>> b.sayhi()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'Student' object has no attribute 'sayhi'
>>>
复制代码


动态给类添加方法(类方法和静态方法)


给类添加的方法对它的所有对象都生效,添加类方法需要传入self参数,添加静态方法则不需要。


执行:(给类添加静态方法)


>>> from payhlib import Student                 
>>> stu = Student('phyger',16)
>>> @staticmethod
... def staticHi():
...     print('staticHi...')
... 
>>> Student.hi=staticHi  
>>> stu.hi
<function staticHi at 0x000001CB617F13A8>
>>> stu.hi()
staticHi...
>>>
复制代码


执行:(给类添加类方法)


因为类方法只能使用类变量,所以我们增加一个类变量home


class Student(object):
    home='china'
    def __init__(self,name,age):
        self.name=name
        self.age=age
>>> from payhlib import Student
>>> stu = Student('phyger',17)  
>>> @classmethod        
... def classHi(self):  
...     print(self.home)
... 
>>> Student.chi=classHi
>>> stu.chi()
china
>>>
复制代码


限制给类或对象添加的属性


假如我们只希望类或者对象有name,age,score三个属性,我们可以借助__slots__来做,而且无法添加其他属性。


修改类:


class Student(object):
    home='china'
    __slots__=('name','age','score')   #init中变量必须在__slots__中
    def __init__(self,name,age):
        self.name=name
        self.age=age
复制代码


执行:


>>> from payhlib import Student
>>> st = Student('phyger',16)
>>> st.name 
'phyger'
>>> st.age 
16
>>> st.score
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: score
>>> st.score =100
>>> st.score      
100
>>> st.phone='123'      #无法添加phone属性
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'Student' object has no attribute 'phone'
>>>
复制代码


多总结几点:


  • 类属性是read-only的
  • 静态方法无法使用类变量
  • 类方法只能使用类变量,不能使用初始化变量
  • __slots__数据类型为元组
  • __slots__只对当前类生效,对其子类不生效
相关文章
|
29天前
|
索引 Python
python-类属性操作
【10月更文挑战第11天】 python类属性操作列举
16 1
|
30天前
|
Java C++ Python
Python基础---类
【10月更文挑战第10天】Python类的定义
21 2
WK
|
1月前
|
Python
Python类命名
在Python编程中,类命名至关重要,影响代码的可读性和维护性。建议使用大写驼峰命名法(如Employee),确保名称简洁且具描述性,避免使用内置类型名及单字母或数字开头,遵循PEP 8风格指南,保持项目内命名风格一致。
WK
12 0
|
1月前
|
程序员 开发者 Python
深度解析Python中的元编程:从装饰器到自定义类创建工具
【10月更文挑战第5天】在现代软件开发中,元编程是一种高级技术,它允许程序员编写能够生成或修改其他程序的代码。这使得开发者可以更灵活地控制和扩展他们的应用逻辑。Python作为一种动态类型语言,提供了丰富的元编程特性,如装饰器、元类以及动态函数和类的创建等。本文将深入探讨这些特性,并通过具体的代码示例来展示如何有效地利用它们。
35 0
|
1月前
|
Python
Python中的类(一)
Python中的类(一)
|
1月前
|
Python
Python中的类(一)
Python中的类(一)
|
1月前
|
Python
Python中的类(二)
Python中的类(二)
|
3月前
|
SQL JSON C语言
Python中字符串的三种定义方法
Python中字符串的三种定义方法
|
5月前
|
Python
python之字符串定义、切片、连接、重复、遍历、字符串方法
python之字符串定义、切片、连接、重复、遍历、字符串方法
python之字符串定义、切片、连接、重复、遍历、字符串方法
28.从入门到精通:Python3 面向对象 面向对象技术简介 类定义 类对象 类的方法
28.从入门到精通:Python3 面向对象 面向对象技术简介 类定义 类对象 类的方法