クラスのstaticmethodsについていくつか質問があります。例を挙げて始めましょう。
例1:
class Static:
def __init__(self, first, last):
self.first = first
self.last = last
self.age = randint(0, 50)
def printName(self):
return self.first + self.last
@staticmethod
def printInfo():
return "Hello %s, your age is %s" % (self.first + self.last, self.age)
x = Static("Ephexeve", "M").printInfo()
出力:
Traceback (most recent call last):
File "/home/ephexeve/Workspace/Tests/classestest.py", line 90, in <module>
x = Static("Ephexeve", "M").printInfo()
File "/home/ephexeve/Workspace/Tests/classestest.py", line 88, in printInfo
return "Hello %s, your age is %s" % (self.first + self.last, self.age)
NameError: global name 'self' is not defined
例2:
class Static:
def __init__(self, first, last):
self.first = first
self.last = last
self.age = randint(0, 50)
def printName(self):
return self.first + self.last
@staticmethod
def printInfo(first, last, age = randint(0, 50)):
print "Hello %s, your age is %s" % (first + last, age)
return
x = Static("Ephexeve", "M")
x.printInfo("Ephexeve", " M") # Looks the same, but the function is different.
出力
Hello Ephexeve M, your age is 18
staticmethodsでself.attributeを呼び出すことができないようですが、いつ、なぜそれを使用するのかがよくわかりません。私の考えでは、いくつかの属性を持つクラスを作成する場合は、後でそれらを使用し、すべての属性を呼び出せないstaticmethodを持たないようにする必要があります。誰でも私にこれを説明できますか?Pythonは私の最初のプログラミング言語なので、たとえばJavaでも同じだとしたら、わかりません。