Python's static methods and class member methods can both be accessed by classes or instances. The concepts of the two are not easy to clarify, but there are still differences:
1) Static methods do not need to pass in the self parameter, and class member methods need to pass in the representative The cls parameter of this class; (the cls parameter represents this class)
2) From item 1, static methods cannot access instance variables, and class member methods also cannot access instance variables, but they can access class variables;
3) Static methods are a bit like function tool libraries, while class member methods are closer to static methods in Java object-oriented concepts.
Two ways to implement static methods and class methods
1. In Python 2.3 and before, use staticmethod and classmethod type object packaging to implement
The example is as follows (pay attention to the instructions in the print):
class MyClass:
val1 = 'Value 1'
def __init__(self):
def classmd(cls):
classmd (cls), classmd (cls), can’t access the value of val2.
>>> mc = MyClass()
>>> mc.smd()
>>> mc.cmd()
>>> MyClass.smd()
>>> MyClass.cmd()
The decorator uses the @ operator. The example is as follows:
class MyClass:
val1 = 'Value 1'
self.val2 = 'Value 2'
@staticmethod
def staticmd():print 'Static method, cannot access val1 and val2'
@classmethod
def classmd( cls):
print 'Class method, class: ' + str(cls) + ', val1: ' + cls.val1 + ', cannot access the value of val2'
No matter which of the above two methods , the execution situation is the same. Taking the execution result of method 2 as an example, the analysis is as follows:
Execution:
>>> mc = MyClass() # Instantiate
>>> mc.staticmd () # Instance call static method, cannot access instance variables val1 and val2
>>>
Static method, cannot access val1 and val2 >>> mc.classmd() # Instance call Class method, please note that what is accessed here is the value of the variable val1 of the class MyClass, not the instance variable val1 of mc after instantiation. It is easy to be confused here. You will understand it if you read below. val2 has always been an instance variable, so it cannot be accessed
>>>
Class method, class: __main__.MyClass, val1: Value 1, the value of val2 cannot be accessed
>>> MyClass.staticmd () # The class directly calls the static method, the result is the same as the above instance call, neither the class variable nor the instance variable can be accessed
>>>
Static method, val1 and val2 cannot be accessed
>> ;> MyClass.classmd() # The class directly calls the class method, the result is the same as the above instance call
>>>
class method, class: __main__.MyClass, val1: Value 1, the value of val2 cannot be accessed
>>> mc.classmd() # Instance calls the class method and notices cls.val1 The value has not changed, so cls.val1 at this time is the class variable val1, not the instance variable val1
>>>
Class method, class: __main__.MyClass, val1: Value 1, val2 cannot be accessed The value of
>>> MyClass.classmd() # class directly calls the class method, the result is the same as the above instance call
>>>
class method, class: __main__.MyClass, val1: Value 1, cannot access the value of val2
>>> MyClass.val1 = 'Class Value changed' # Change the value of the class variable val1
>>> mc.classmd() # Example Call the class method and notice that the value of cls.val1 has changed, so this further proves that cls.val1 at this time is the class variable val1, not the instance variable val1
>>>
Class method, class: __main__.MyClass, val1: Class Value changed, the value of val2 cannot be accessed
>>> MyClass.classmd() # The class directly calls the class method, the result is the same as the above instance call
>
Static method: It cannot access class attributes and instance attributes. It is equivalent to a relatively independent method and has nothing to do with the class. From another perspective, it is just a function placed in the scope of a class.
Class member methods: Class attributes can be accessed, but instance attributes cannot be accessed. The above variable val1 is a class variable in the class and an instance variable in the instance, so it is easy to confuse.

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
