学习python的类
2021/10/25 17:11:56
本文主要是介绍学习python的类,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
class Book: #类的成员变量 hello = "world" #类初始化转换器,类在外部初始化的时候 把title的值传给__title 类似的举例 def __init__(self,title,price): self.__title = title self.__price = price #定义属性 下面第一个price函数是 getter(获取器方法) 返回__price的值 @property def price(self): return self.__price @price.setter # 设定器方法 def price(self, price): self.__price = price @price.deleter # 删除器方法 def price(self): self.__price = 0 #类的成员方法 def print_content(self,num): print(self.__title, self.__price * 2) #定义一个子类继承Book class ColorBook(Book): #子类成员变量 color = '红色' #重写父类的方法 #super表示代码全用父类的 然后在加了一条打印颜色的 def print_content(self,num): super().print_content(num) print(self.color) #类实例化 book = Book('标题',1000) #调用父类函数 print(book.print_content(2)) #父类设置器 book.price = 1111 print(book.print_content(2)) #父类删除器 del(book.price) #子类初始化对象 book1 = ColorBook('标题',1001) #调通子类函数 print(book1.print_content(3))
这篇关于学习python的类的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-30Python中''') 是什么?-icode9专业技术文章分享
- 2024-11-26Python基础编程
- 2024-11-25Python编程基础:变量与类型
- 2024-11-25Python编程基础与实践
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程