Comment appeler des méthodes statiques de classe à partir du corps de classe en Python ?

Patricia Arquette
Libérer: 2024-10-18 06:47:03
original
244 Les gens l'ont consulté

How to Call Class Static Methods from within the Class Body in Python?

Calling Class Staticmethod within the Class Body in Python

For Python versions 3.10 and above, calling a static method from within the class body is straightforward. However, for versions 3.9 and earlier, this poses a challenge.

Error Encountered

When attempting to call a static method from within the class body, you may encounter the following error:

TypeError: 'staticmethod' object is not callable
Copier après la connexion

This error occurs because static methods, when declared using the staticmethod decorator, become descriptors. Descriptors bind to the class instead of the instance, making them inaccessible from within the class body.

Workaround Using __func__ Attribute

One workaround is to access the original raw function through the __func__ attribute of the static method object:

<code class="python">class Klass(object):

    @staticmethod
    def stat_func():
        return 42

    _ANS = stat_func.__func__()  # call the staticmethod

    def method(self):
        ret = Klass.stat_func()
        return ret</code>
Copier après la connexion

Additional Notes

  • While the above workaround is functional, the __func__ attribute is an implementation detail and may change in future Python versions.
  • For Python versions 3.10 and above, calling static methods from within the class body is straightforward as shown below:
<code class="python">class Klass(object):

    @staticmethod
    def stat_func():
        return 42

    def method(self):
        ret = Klass.stat_func()
        return ret</code>
Copier après la connexion

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:php
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!