我无法弄清楚如何在课堂上获得当前的实例。
class Basic(object):
def __init__(self, val):
self.val = val
def current_ins(self):
???
有没有办法在python中使用val
获取当前实例?
感谢。
答案 0 :(得分:3)
“当前实例”为self
。
答案 1 :(得分:1)
Self是所有类的当前实例。在你的情况下,
class Basic(object):
def __init__(self, val):
self.val = val
def current_ins(self):
#???
print self.val # one can use self to access all the member of it's class.