“Py3 oop”的版本间的差异
跳到导航
跳到搜索
第1行: | 第1行: | ||
[[category:python]] | [[category:python]] | ||
=2024= | =2024= | ||
− | ==类(Class)与对象(Object)== | + | == 类(Class)与对象(Object) == |
<pre> | <pre> | ||
class Student: | class Student: | ||
第19行: | 第19行: | ||
# Name: evan. Score: 100 | # Name: evan. Score: 100 | ||
</pre> | </pre> | ||
− | == 类变量(class variables)与实例变量(instance variables) | + | == 类变量(class variables)与实例变量(instance variables)== |
− | == | ||
<pre> | <pre> | ||
class Student: | class Student: | ||
第52行: | 第51行: | ||
</pre> | </pre> | ||
+ | |||
+ | ==类方法(Class method)== | ||
+ | <pre> | ||
+ | |||
+ | </pre> | ||
+ | == == | ||
+ | <pre> | ||
+ | |||
+ | </pre> | ||
+ | |||
+ | == == | ||
+ | <pre> | ||
+ | |||
+ | </pre> | ||
=类对象= | =类对象= | ||
<pre> | <pre> |
2024年10月24日 (四) 02:32的版本
目录
2024
类(Class)与对象(Object)
class Student: def __init__(self,name,score): self.name = name self.score = score def show(self): print("Name: {}. Score: {}".format(self.name,self.score)) student1 = Student("evan",100) print(student1) student1.show() # ➜ tmp py3 clas.py # <__main__.Student object at 0x7f007c9e9890> # Name: evan. Score: 100
类变量(class variables)与实例变量(instance variables)
class Student: # number属于类变量,定义在方法外,不属于具体实例 number =0 def __init__(self,name,score): self.name = name self.score = score # number = number + 1 ## number属于类变量,定义在方法外,不属于具体实例 Student.number = Student.number + 1 def show(self): print("Name: {}. Score: {}".format(self.name,self.score)) student1 = Student("evan",100) print(student1) student1.show() print(Student.number) print(student1.__class__.number) # ➜ tmp py3 clas.py # <__main__.Student object at 0x7fb907ed9890> # Name: evan. Score: 100 # 1 # 1
类方法(Class method)
类对象
#!/usr/bin/python3 class MyClass: """一个简单的类实例""" i = 12345 def f(self): return 'hello world' # 实例化类 x = MyClass() # 访问类的属性和方法 print("MyClass 类的属性 i 为:", x.i) print("MyClass 类的方法 f 输出为:", x.f()) # 以上创建了一个新的类实例并将该对象赋给局部变量 x,x 为空的对象。 执行以上程序输出结果为: MyClass 类的属性 i 为: 12345 MyClass 类的方法 f 输出为: hello world
see also
__init__() 的特殊方法(构造方法)
类有一个名为 __init__() 的特殊方法(构造方法),该方法在类实例化时会自动调用 #!/usr/bin/python3 class Complex: def __init__(self, realpart, imagpart): self.r = realpart self.i = imagpart x = Complex(3.0, -4.5) print(x.r, x.i) # 输出结果:3.0 -4.5