Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use the inheritance of Python

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the relevant knowledge of "how to use the inheritance of Python". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Three major object-oriented features:

To encapsulate properties and methods into an abstract class according to their responsibilities.

Inheritance to achieve the reuse of code, the same code does not need to be written repeatedly

Polymorphic different objects call the same method, resulting in different execution results and increasing the flexibility of the code.

1. Single inheritance 1.1 the concept, syntax and characteristics of inheritance

The concept of inheritance: subclasses have all the methods and properties of the parent class

Do not use inherited classes

Class Animal: def eat (self): print (eat) def drink (self): print (drink) def run (self): print (run) def sleep (self): print (sleep) class Dog: def eat (self): print (eat) def drink (self): print (drink) def run (self): print (run ) def sleep (self): print ("sleep") def bark (self): print ("bark") # create an object-dog object wangcai = Dog () wangcai.eat () wangcai.drink () wangcai.run () wangcai.bark () 1), Inherited syntax class class name (parent class name): pass

The subclass inherits from the parent class and can directly enjoy the encapsulated methods in the parent class without the need to develop again

Subclasses should encapsulate properties and methods specific to subclasses according to their responsibilities

Use inherited classes:

Class Animal: def eat (self): print ("eat -") def drink (self): print ("drink--") def run (self): print ("run -") def sleep (self): print ("sleep -") class Dog (Animal): # subclass has all the properties and methods of the parent class # def eat (self): # print (" Eat) # # def drink (self): # print (drink) # # def run (self): # print ("run") # # def sleep (self): # print ("sleep") def bark (self): print ("bark") # create an object-dog object wangcai = Dog () wangcai.eat () wangcai.drink ( Wangcai.run () wangcai.sleep () wangcai.bark () 2), Professional terminology

The Dog class is a subclass of the Animal class, the Animal class is the parent of the Dog class, and the Dog class inherits from the Animal class

Dog class is a derivative of the Animal class, the Animal class is the base class of the Dog class, and the Dog class is derived from the Animal class

This is the end of the content of "how to use Python inheritance". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report