The difference between a static method and a class method in Python "Go"

Source: Internet
Author: User
Tags instance method
Class Testclassmethod (Object):    method = ' method HoHo '    def __init__ (self):        self.name = ' Leon '    def test1 (self):        print ' test1 '        print self    @classmethod    def test2 (CLS):        print CLS        print ' Test2 '        print testclassmethod.method        print '----------------'    @staticmethod    def test3 ():        print Testclassmethod.method        print ' test3 ' if __name__ = = ' __main__ ':    a = Testclassmethod ()    a.test1 ()    A.test2 ()    a.test3 ()    testclassmethod.test3 ()

Test1 as an instance method

Test2 is a class method, the first argument is the class itself

Test3 is a static method and can not receive parameters

Class methods and static methods can access static variables (class variables) of a class, but cannot access instance variables, Test2, test3 cannot access self.name, and test1 can

Program Run Result:

The difference between a static method and a class method in Python "Go"

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.