python类的成员变量_在Python中访问类的成员变量?

答案,用几句话说

在您的示例中,itsProblem是一个局部变量.

您必须使用self来设置和获取实例变量.您可以在__init__方法中进行设置.然后你的代码将是:

class Example(object):

def __init__(self):

self.itsProblem = "problem"

theExample = Example()

print(theExample.itsProblem)

但是如果你想要一个真正的类变量,那么直接使用类名:

class Example(object):

itsProblem = "problem"

theExample = Example()

print(theExample.itsProblem)

print (Example.itsProblem)

但要小心这个,因为ExampleExitsm自动设置为等于Example.itsProblem,但根本不是同一个变量,可以单独更改.

一些解释

在Python中,可以动态创建变量.因此,您可以执行以下操作:

class Example(object):

pass

Example.itsProblem = "problem"

e = Example()

e.itsSecondProblem = "problem"

print Example.itsProblem == e.itsSecondProblem

版画

True

因此,这正是您使用前面的示例所做的.

实际上,在Python中我们使用self作为这个,但它不止于此. self是任何对象方法的第一个参数,因为第一个参数始终是对象引用.这是自动的,无论你是否自称.

这意味着你可以做到:

class Example(object):

def __init__(self):

self.itsProblem = "problem"

theExample = Example()

print(theExample.itsProblem)

要么:

class Example(object):

def __init__(my_super_self):

my_super_self.itsProblem = "problem"

theExample = Example()

print(theExample.itsProblem)

它完全一样. ANY对象方法的第一个参数是当前对象,我们只将它称为self作为约定.而且你只需要为这个对象添加一个变量,就像从外面做的那样.

现在,关于类变量.

当你这样做时:

class Example(object):

itsProblem = "problem"

theExample = Example()

print(theExample.itsProblem)

你会注意到我们首先设置一个类变量,然后我们访问一个对象(实例)变量.我们从未设置过这个对象变量,但它有效,这怎么可能?

好吧,Python试图先得到对象变量,但是如果它找不到它,就会给你类变量.警告:类变量在实例之间共享,而对象变量则不是.

作为结论,永远不要使用类变量来设置对象变量的默认值.使用__init__.

最后,您将了解到Python类是实例,因此也是对象本身,这为理解上述内容提供了新的见解.一旦你意识到这一点,回来后再读一遍.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值