python实例化对象的具体⽅法
python中同样使⽤关键字class创建⼀个类,类名称第⼀个字母⼤写,可以带括号也可以不带括号;python中实例化类不需要使⽤关键字new(也没有这个关键字),类的实例化类似函数调⽤⽅式;
# coding: utf-8
# 创建⼀个类,类名称第⼀个字母⼤写,可以带括号也可以不带括号
class Student():
student_count = 0
def __init__(self, name, salary):
self.name = name
self.age = salary
Student.student_count += 1
def display_count(self):
print('Total student {}'.format(Student.student_count))
def display_student(self):
print('Name: {}, age: {}'.format(self.name,self.age))
def get_class(self):
if self.age >= 7 and self.age < 8:
return 1
if self.age >= 8 and self.age < 9:
return 2
if self.age >= 9 and self.age < 10:
return 3
if self.age >= 10 and self.age < 11:
return 4
else:
return 0
创建类的对象(实例化类)
python中实例化类不需要使⽤关键字new(也没有这个关键字),类的实例化类似函数调⽤⽅式。
student1 = Student('cuiyongyuan',10)
student2 = Student('yuanli', 10)
student1.display_student()
student2.display_student()
student1_class = _class()
student2_class = _class()
实例扩展:
实例化过程:
class luffy_stu:
def __init__(self,name,age,sex):
self.name = name
self.age = age
self.sex = sex
def eat(self):
pass
if __name__=="__main__":
stu1 = luffy_stu('bao',21,'male')
#实例化过程:
#1. 是先产⽣⼀个stu1对象,
实例化类和实例化对象#2. luffy_stu.__init__('stu1','bao',21,'male')再将stu1对象传⼊__init__构造函数中实例化对象
以上就是python实例化对象的具体⽅法的详细内容,更多关于python如何实例化对象的资料请关注其它相关⽂章!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论