class Example(object):
def the_example(self):
itsProblem = "problem"
theExample = Example()
print(theExample.itsProblem)
如何访问类的变量?我试过添加这个定义:
def return_itsProblem(self):
return itsProblem
然而,这也失败了。
class Example(object):
def the_example(self):
itsProblem = "problem"
theExample = Example()
print(theExample.itsProblem)
如何访问类的变量?我试过添加这个定义:
def return_itsProblem(self):
return itsProblem
然而,这也失败了。
答案,几句话
在您的示例中,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)
但要小心这个,因为theExample.itsProblem
它自动设置为等于Example.itsProblem
,但根本不是同一个变量,可以独立更改。
一些解释
在 Python 中,可以动态创建变量。因此,您可以执行以下操作:
class Example(object):
pass
Example.itsProblem = "problem"
e = Example()
e.itsSecondProblem = "problem"
print Example.itsProblem == e.itsSecondProblem
印刷
真的
因此,这正是您对前面的示例所做的。
确实,在 Python 中我们使用self
as this
,但不止于此。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 类是实例,因此也是对象本身,这为理解上述内容提供了新的见解。一旦你意识到这一点,请稍后再读一遍。
您正在声明一个局部变量,而不是一个类变量。要设置实例变量(属性),请使用
class Example(object):
def the_example(self):
self.itsProblem = "problem" # <-- remember the 'self.'
theExample = Example()
theExample.the_example()
print(theExample.itsProblem)
要设置类变量(又名静态成员),请使用
class Example(object):
def the_example(self):
Example.itsProblem = "problem"
# or, type(self).itsProblem = "problem"
# depending what you want to do when the class is derived.
如果你有一个实例函数(即一个通过 self 的函数),你可以使用 self 来获取对类的引用self.__class__
例如,在下面的代码中,tornado 创建了一个实例来处理 get 请求,但是我们可以获取get_handler
该类并使用它来保存一个 riak 客户端,因此我们不需要为每个请求创建一个。
import tornado.web
import riak
class get_handler(tornado.web.requestHandler):
riak_client = None
def post(self):
cls = self.__class__
if cls.riak_client is None:
cls.riak_client = riak.RiakClient(pb_port=8087, protocol='pbc')
# Additional code to send response to the request ...
像下面的例子一样实现 return 语句!你应该很好。我希望它可以帮助某人..
class Example(object):
def the_example(self):
itsProblem = "problem"
return itsProblem
theExample = Example()
print theExample.the_example()
如果你有一个@classmethod
静态方法,你总是把类作为第一个参数:
class Example(object):
itsProblem = "problem"
@classmethod
def printProblem(cls):
print(cls.itsProblem)
Example.printProblem()