Analysis of constructor methods in Python (with examples)
The content of this article is about the analysis of construction methods in Python (with examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
In Python, you will see function names preceded and followed by double underscores, such as __init__(self). This type of writing has special meaning in Python. If an object uses one of these methods, that method will be executed under special circumstances, but such methods are rarely called directly.
If there is no need to be compatible with older versions of Python code, we should write all classes as new-style classes and use features such as the super function when writing code.
There are no "old-style" classes in Python 3.0, and there is no need to subclass Object or set the metaclass to type (starting line of code __metaclass__=type). That's because all All classes are implicitly subclasses of Object. If there is no explicit superclass, it will be subclassed directly; otherwise, it will be subclassed indirectly.
Constructor method in Python
The constructor method is different from other methods. When an object is created, the constructor method will be called immediately.
Rewrite general methods and special construction methods:
After understanding the concept of inheritance, we know that each class may have one or more superclasses, and subclasses inherit from the parent class. Inherit some behaviors of the parent class. Not only that, we can also override some super class methods to customize inheritance behavior.
class Bird: def __init__(self): self.hungry=True def eat(self): if self.hungry: print('我在吃') self.hungry=False else: print('我吃饱了,谢谢') sb=Bird() sb.eat() sb.eat()
Print result:
我在吃 我吃饱了,谢谢
It can be known from the code that after the bird is full, it will change its hunger state to Flase means that the bird is full. When the eat function is called, it will print that I am full. Thank you. This is through the use of the __init__ function in a class. Let’s look at the extended case. Eating is the basic characteristic of birds, and Bird can be regarded as the base class of birds. Now we write a singing bird, because we have already written a bird base class, and now we only need to inherit it. Our bird will not only sing but also learn the skill of eating by default.
class Bird: def __init__(self): self.hungry=True def eat(self): if self.hungry: print('ahhh') self.hungry=False else: print('no thanks') class SongBird(Bird): def __init__(self): self.sound='Squawk' def sing(self): print(self.sound) sb=SongBird() sb.sing() sb.eat() sb.eat()
Print results:
Traceback (most recent call last): Squawk File "F:/Python培训/博客园随笔专用/文件操作/文件读写.py", line 20, in <module> sb.eat() File "F:/Python培训/博客园随笔专用/文件操作/文件读写.py", line 5, in eat if self.hungry: AttributeError: 'SongBird' object has no attribute 'hungry'
Unfortunately, our birds can trigger The singing function, but when the eating function of the parent class is called, an exception is thrown. Looking at the eat function defined in the parent class, you need to set the hungry attribute to start the eat function. But what is puzzling is that we have inherited the base class Bird, and Bird also defines hungry, why does it not work? That's because the hungry attribute only takes effect when the parent class calls its own constructor. It can be seen that SingBird inherits all the functions of Bird, but does not trigger Bird's initialization function. Modify the following code
class Bird: def __init__(self): self.hungry=True def eat(self): if self.hungry: print('ahhh') self.hungry=False else: print('no thanks') class SongBird(Bird): def __init__(self): Bird.__init__(self) self.sound='Squawk' def sing(self): print(self.sound) sb=SongBird() sb.sing() sb.eat() sb.eat()
Output result:
Squawk ahhh no thanks
We can know from the code that we When SongBird initializes the class, Bird's initialization function is called. Therefore, Bird's constructor is triggered. Now our birds can not only sing but also have the eating behavior of the basic species.
Look at its execution process. While SongBird initializes itself, it passes itself as a parameter to its parent class, which means telling the parent class that when you created me, you had to give me innate skills (knowing how to feed myself). That is, the hungry attribute is set.
Using the Super function
The above method was written before 3.0. The super function will be used in the new class to solve the above problems.
class Bird: def __init__(self): self.hungry=True def eat(self): if self.hungry: print('ahhh') self.hungry=False else: print('no thanks') class SongBird(Bird): def __init__(self): super(SongBird, self).__init__() self.sound='Squawk' def sing(self): print(self.sound) sb=SongBird() sb.sing() sb.eat() sb.eat()
The current class and object are called as parameters, and any method of calling the object returned by the function is a method of calling the super class. Summary: The subclass and subclass object are passed explicitly and the constructor is called, but the constructor of the parent class is implicitly executed.
The above is the detailed content of Analysis of constructor methods in Python (with examples). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

VS Code can run on Windows 8, but the experience may not be great. First make sure the system has been updated to the latest patch, then download the VS Code installation package that matches the system architecture and install it as prompted. After installation, be aware that some extensions may be incompatible with Windows 8 and need to look for alternative extensions or use newer Windows systems in a virtual machine. Install the necessary extensions to check whether they work properly. Although VS Code is feasible on Windows 8, it is recommended to upgrade to a newer Windows system for a better development experience and security.

VS Code can be used to write Python and provides many features that make it an ideal tool for developing Python applications. It allows users to: install Python extensions to get functions such as code completion, syntax highlighting, and debugging. Use the debugger to track code step by step, find and fix errors. Integrate Git for version control. Use code formatting tools to maintain code consistency. Use the Linting tool to spot potential problems ahead of time.

Running Python code in Notepad requires the Python executable and NppExec plug-in to be installed. After installing Python and adding PATH to it, configure the command "python" and the parameter "{CURRENT_DIRECTORY}{FILE_NAME}" in the NppExec plug-in to run Python code in Notepad through the shortcut key "F6".

VS Code extensions pose malicious risks, such as hiding malicious code, exploiting vulnerabilities, and masturbating as legitimate extensions. Methods to identify malicious extensions include: checking publishers, reading comments, checking code, and installing with caution. Security measures also include: security awareness, good habits, regular updates and antivirus software.
