如何在python基类中声明成员变量,可以在派生中访问它

时间:2013-07-15 18:36:33

标签: python class

也许我做错了因为我正在思考C ++类是如何工作的。

但我有一组类,见下文,它们有一组HTTP头(这是我尝试封装HTTP请求)。例如,基类将具有最通用的头,而派生类将具有更多专用头。

在基类中,我不能只在一行上有标题。这样做给了我一个语法错误。所以像下面这样做,并设置为字典(它是)。但是,如果我在跑步时这样做,我会得到:

>>> Unhandled exception while debugging...
Traceback (most recent call last):
  File "C:\Python27\rq_module.py", line 1, in <module>
    class httprequest:
  File "C:\Python27\rq_module.py", line 2, in httprequest
    header  #dict of headers
NameError: name 'header' is not defined


class httprequest:
    header = dict()  #dict of headers
    def __init__(self):
        #add standard headers
        header = { 'User-Agent' :  'Test Python http client v0.1' }

    def send(self):
        print "Sending base httprequest"

class get_httprequest(httprequest):
    """GET http requests class"""

    def send(self):
        print "Sending GET http request"


class post_httprequest(httprequest):
    """POST http request class"""
    def __init__(self):
        header += { 'Content-Type' : 'application/json' } #all data sent in json form

    def send(self):
        print "Sending POST http request"

如何在基类中创建一个成员变量,也可以在派生类中访问?

我正在使用Python 2.7

EDIT。根据我对响应的理解,这是我的更新。它确实有效:)

我得到了一个TypeError,但似乎我只在PythonWin调试器中看到过。不是在没有调试器的情况下运行。

class httprequest(object):
    header = dict()  #dict of headers
    def __init__(self):
        print "httprequest ctor"
        self.header['User-Agent'] = 'Test Python http client v0.1'

    def send(self):
        print "Sending base httprequest"

class get_httprequest(httprequest):
    """GET http requests class"""

    def send(self):
        print "Sending GET http request"


class post_httprequest(httprequest):
    """POST http request class"""
    def __init__(self):
        super(post_httprequest, self).__init__()
        super(post_httprequest, self).header['Content-Type'] = 'application/json'
        print "post_httprequest ctor"


    def send(self):
        print "Sending POST http request"

2 个答案:

答案 0 :(得分:5)

始终通过类实例本身访问实例变量。在方法内部,这是(按照惯例)称为self。所以你需要使用self.headers等。

请注意,通过在类的顶部定义headers,您已经定义了一个由所有成员共享的变量。你不想要这个,也没有必要在那里定义headers。只需在__init__内分配即可。

另外,正如StoryTeller指出的那样,你需要在派生类方法中手动调用超类__init__方法,因为它首先定义了属性:

super(post_httprequest, self).__init__()

为了实现这一点,正如abarnert指出的那样,你需要从object继承你的基类。

最后,请使用符合PEP8的名称:PostHttpRequest等。

答案 1 :(得分:0)

通过在header

前加上self.变量,请参阅class httprequest: header = dict() #dict of headers def __init__(self): #add standard headers self.header = { 'User-Agent' : 'Test Python http client v0.1' } def send(self): print "Sending base httprequest" 变量
self

你可以认为this相当于java,c ++等... header关键字:它指的是当前实例。

在这里,您将httprequest.header定义为类属性,这意味着它可以使用 self.headermy_instance.header(来自班级内部)或`self(来自班级以外)。

您可以通过__init__方法声明它来使其成为实例变量(只能通过class httprequest: def __init__(self): #add standard headers self.header = { 'User-Agent' : 'Test Python http client v0.1' } def send(self): print "Sending base httprequest" 或实例的名称访问):

{{1}}

在这里,你可能希望将它保持在班级水平。