前端之家收集整理的这篇文章主要介绍了
没有“self”的Python调用方法,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以我刚刚开始在
python编程,我不明白“自我”背后的整个推理.我知道它几乎像一个
全局变量一样使用,这样可以在类中的不同
方法之间传递数据.我不明白为什么在同一个类中
调用另一个
方法时需要使用它.如果我已经在上课了,为什么要告诉它?
例如,如果我有:
为什么我需要self.thing()?
class bla:
def hello(self):
self.thing()
def thing(self):
print "hello"
你也可以在类静态中使
方法不需要自己.但是,如果您真的需要,请使用此
功能.
你:
class bla:
def hello(self):
self.thing()
def thing(self):
print "hello"
静态版
class bla:
@staticmethod
def hello():
bla.thing()
@staticmethod
def thing():
print "hello"
原文链接:https://www.f2er.com/python/186208.html