类的特殊属性
Posted huanyinglvtuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类的特殊属性相关的知识,希望对你有一定的参考价值。
类的特殊属性
- dict
作用:获取实例对象所绑定的所有属性和方法的字典
class Student:
def __init__(self, name, age, score):
self.name = name
self.age = age
self.score = score
s1 = Student("shaodi", 17, 98)
# __dict__特殊属性,获取实例对象所绑定的所有属性和方法的字典
print(s1.__dict__)
以上是关于类的特殊属性的主要内容,如果未能解决你的问题,请参考以下文章
26.Qt Quick QML-RotationAnimationPathAnimationSmoothedAnimationBehaviorPauseAnimationSequential(代码片段