如何在课堂上获得当前实例?

时间:2015-04-17 05:32:02

标签: python class object instance

我无法弄清楚如何在课堂上获得当前的实例。

class Basic(object):
    def __init__(self, val):
        self.val = val

    def current_ins(self):
        ???

有没有办法在python中使用val获取当前实例? 感谢。

2 个答案:

答案 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.