Home Backend Development Python Tutorial Python object-oriented video material sharing

Python object-oriented video material sharing

Aug 25, 2017 pm 02:59 PM
python share

Object-oriented is a very mainstream idea in current programming languages. Python has a very good implementation of object-oriented. At the same time, with the help of Python's flexible syntax, some cool object-oriented features can be implemented.

Python has been an object-oriented language from the beginning. Because of this, it is easy to create classes and objects in Python. In this chapter we will introduce object-oriented programming in Python in detail.

If you have not been exposed to object-oriented programming languages ​​before, you may need to first understand some basic features of object-oriented languages ​​and form a basic object-oriented concept in your mind, which will help you Easily learn object-oriented programming in Python.

Next, let’s briefly understand some basic characteristics of object-oriented.

Python object-oriented video material sharing

What is difficult to learn about object-oriented is not the concepts and other knowledge points, but the object-oriented way of thinking:

The basic ideas of object-oriented are encapsulation, inheritance, Polymorphic.

First is inheritance:

Define a class:

The code is as follows:

class Bird(object):  
    have_feather = True  
    way_of_reproduction  = 'egg'
Copy after login

Call this class:

The code is as follows:

summer = Bird()  
print summer.way_of_reproduction
Copy after login


Different from Java, Python does not require new to instantiate a class.

Similarly, Python classes can define methods below:

The code is as follows:

class Bird(object):      
    have_feather = True      
    way_of_reproduction = 'egg'      
      
    def say(self, word='hi hi'):  
              print 'i say :' + word
Copy after login

Note that all class functions must have at least one Parameter, this parameter must be self.

Functions outside the class do not have this restriction.

The code is as follows:

chk = Chicken()  
print chk.have_feather  
print chk.sat('hello')
Copy after login

__init__() method

__init__() is a special method. There will be some special methods in Python, and Python will handle them in a special way. Special method names are characterized by two underscores before and after them.

The __init__() method is special in that if you define this method in a class, Python will automatically call this method once you create an object based on this class (this process is also called initialization).

For example:

The code is as follows:

class happyBird(Bird):  
    def __init__(self,more_words):  
        print 'We are happy birds.',more_words  
  
hb = happyBird('Happy,Happy!')
Copy after login

Overloading of the parent class method:

The code is as follows:

class Hello(object):  
    name = 'hello'  
      
    def __init__(self):  
        self.name='my name is hello'  
      
    #类中的参数必须带有self参数  
    def sayhi(self):  
        print 'hi you'  
  
class World(Hello):   
    def __init__(self):  
        #这里访问的是父类初始化的变量名  
        print 'before:',Hello.name   
        super(World,self).__init__()    
        #由于调用了父类的初始化构造函数,继承了父类的变量的改变  
        print 'after:',self.name  
          
        #近似于方法重载  
    def sayhi(self,word='baby'):  
        #调用父类sayhi方法  
        super(World,self).sayhi()  
        print 'hi '+word  
              
    def sayWorld(self):  
        print 'hi,hello world'  
          
if __name__ == '__main__':  
    c = World()  
    c.sayhi()  
    c.sayWorld()
Copy after login

In addition, python allows multiple inheritance, but this is a very dangerous operation and it is recommended not to use it casually.

About Python's polymorphism, just like JavaScript, you can directly access the properties of the object without using interfaces and without type conversion.

For type judgment, there are the type() function and the isinstance() function to judge whether it is a subclass of a certain function.

Copy the code The code is as follows:

isinstance(object, classinfo)


Determine whether the instance is this class or object is a variable

classinfo is a type (tuple, dict, int, float)
Determine whether the variable is of this type

The code is as follows:

class objA:   
pass   
  
A = objA()   
B = 'a','v'   
C = 'a string'   
  
print isinstance(A, objA)   
print isinstance(B, tuple)   
print isinstance(C, basestring)
Copy after login

Output result:
True
True
True

The above is the detailed content of Python object-oriented video material sharing. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What should I do if the '__builtin__' module is not found when loading the Pickle file in Python 3.6? What should I do if the '__builtin__' module is not found when loading the Pickle file in Python 3.6? Apr 02, 2025 am 07:12 AM

Error loading Pickle file in Python 3.6 environment: ModuleNotFoundError:Nomodulenamed...

Is Debian Strings compatible with multiple browsers Is Debian Strings compatible with multiple browsers Apr 02, 2025 am 08:30 AM

"DebianStrings" is not a standard term, and its specific meaning is still unclear. This article cannot directly comment on its browser compatibility. However, if "DebianStrings" refers to a web application running on a Debian system, its browser compatibility depends on the technical architecture of the application itself. Most modern web applications are committed to cross-browser compatibility. This relies on following web standards and using well-compatible front-end technologies (such as HTML, CSS, JavaScript) and back-end technologies (such as PHP, Python, Node.js, etc.). To ensure that the application is compatible with multiple browsers, developers often need to conduct cross-browser testing and use responsiveness

Is the conversion speed fast when converting XML to PDF on mobile phone? Is the conversion speed fast when converting XML to PDF on mobile phone? Apr 02, 2025 pm 10:09 PM

The speed of mobile XML to PDF depends on the following factors: the complexity of XML structure. Mobile hardware configuration conversion method (library, algorithm) code quality optimization methods (select efficient libraries, optimize algorithms, cache data, and utilize multi-threading). Overall, there is no absolute answer and it needs to be optimized according to the specific situation.

Does XML modification require programming? Does XML modification require programming? Apr 02, 2025 pm 06:51 PM

Modifying XML content requires programming, because it requires accurate finding of the target nodes to add, delete, modify and check. The programming language has corresponding libraries to process XML and provides APIs to perform safe, efficient and controllable operations like operating databases.

Is there any mobile app that can convert XML into PDF? Is there any mobile app that can convert XML into PDF? Apr 02, 2025 pm 08:54 PM

An application that converts XML directly to PDF cannot be found because they are two fundamentally different formats. XML is used to store data, while PDF is used to display documents. To complete the transformation, you can use programming languages ​​and libraries such as Python and ReportLab to parse XML data and generate PDF documents.

How to modify comment content in XML How to modify comment content in XML Apr 02, 2025 pm 06:15 PM

For small XML files, you can directly replace the annotation content with a text editor; for large files, it is recommended to use the XML parser to modify it to ensure efficiency and accuracy. Be careful when deleting XML comments, keeping comments usually helps code understanding and maintenance. Advanced tips provide Python sample code to modify comments using XML parser, but the specific implementation needs to be adjusted according to the XML library used. Pay attention to encoding issues when modifying XML files. It is recommended to use UTF-8 encoding and specify the encoding format.

What is the process of converting XML into images? What is the process of converting XML into images? Apr 02, 2025 pm 08:24 PM

To convert XML images, you need to determine the XML data structure first, then select a suitable graphical library (such as Python's matplotlib) and method, select a visualization strategy based on the data structure, consider the data volume and image format, perform batch processing or use efficient libraries, and finally save it as PNG, JPEG, or SVG according to the needs.

How to open xml format How to open xml format Apr 02, 2025 pm 09:00 PM

Use most text editors to open XML files; if you need a more intuitive tree display, you can use an XML editor, such as Oxygen XML Editor or XMLSpy; if you process XML data in a program, you need to use a programming language (such as Python) and XML libraries (such as xml.etree.ElementTree) to parse.

See all articles