1

也许我做错了,因为我在考虑 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

编辑。这是基于我对响应的理解的更新。它似乎确实有效:)

我得到了一个 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"
4

2 回答 2

5

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

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

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

super(post_httprequest, self).__init__()

正如 abarnert 指出的那样,为了让它发挥作用,您需要从object.

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

于 2013-07-15T18:39:20.577 回答
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视为 java、c++ 等的等效this关键字:它指的是当前实例。

在这里,您将其定义header为类属性,这意味着它可以通过 httprequest.header, self.header(从类内部)或my_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"

不过,在这里,您可能希望将其保持在班级级别。

于 2013-07-15T18:42:42.820 回答