Ban đầu tôi muốn hỏi câu hỏi này , nhưng sau đó tôi thấy nó đã được nghĩ đến từ trước ...
Tìm kiếm xung quanh tôi đã tìm thấy ví dụ này về mở rộng configparser . Những điều sau đây hoạt động với Python 3:
$ python3
Python 3.2.3rc2 (default, Mar 21 2012, 06:59:51)
[GCC 4.6.3] on linux2
>>> from configparser import SafeConfigParser
>>> class AmritaConfigParser(SafeConfigParser):
... def __init_(self):
... super().__init__()
...
>>> cfg = AmritaConfigParser()
Nhưng không phải với Python 2:
>>> class AmritaConfigParser(SafeConfigParser):
... def __init__(self):
... super(SafeConfigParser).init()
...
>>> cfg = AmritaConfigParser()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 3, in __init__
TypeError: must be type, not classob
Sau đó, tôi đọc một chút về kiểu Python New Class so với Old Class (ví dụ: ở đây . Và bây giờ tôi đang tự hỏi, tôi có thể làm:
class MyConfigParser(ConfigParser.ConfigParser):
def Write(self, fp):
"""override the module's original write funcition"""
....
def MyWrite(self, fp):
"""Define new function and inherit all others"""
Nhưng, tôi không nên gọi init? Điều này trong Python 2 có tương đương không:
class AmritaConfigParser(ConfigParser.SafeConfigParser):
#def __init__(self):
# super().__init__() # Python3 syntax, or rather, new style class syntax ...
#
# is this the equivalent of the above ?
def __init__(self):
ConfigParser.SafeConfigParser.__init__(self)
__init__()
trong lớp con nếu tất cả những gì nó làm là gọi siêu lớp '__init__()
(trong Python 2 hoặc 3) - thay vào đó chỉ cần để siêu lớp được kế thừa.