How to use the static method of python
Today, the editor will share with you the relevant knowledge points about how to use python's static method. The content is detailed and the logic is clear. I believe most people still know too much about this knowledge, so share this article for your reference. I hope you can get something after reading this article. Let's take a look at it.
1. Define static methods through the decorator @ staticmethod.
2. @ staticmethod must be written on the method.
3. Accessing instance properties and instance methods in static methods can cause errors.
4. Call format: "Class name. Static method name (parameter list)"
Example
Class Person: # Class attribute school = "Zhongjia Fenghua International School" tuition = 100000 count = 0 # instance property def _ _ init__ (self,name,age): self.name = name self.age = age Person.count = Person.count+1 # static instance @ staticmethod def addNum (AMague b): print ("{0} + {1} = {2}" .format (Azob) ) return astatb # instance method def get_score (self): print ("name: {0} Age: {1} ".format (self.name,self.age) stu1 = Person (" sue ", 22) stu1.get_score () Person.addNum (1) above is all the content of this article" how to use static methods of python ". Thank you for reading! I believe you will gain a lot after reading this article. The editor will update different knowledge for you every day. If you want to learn more knowledge, please pay attention to the industry information channel.