- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想做如下的事情(在 Python 3.7 中):
class Animal:
def __init__(self, name, legs):
self.legs = legs
print(name)
@classmethod
def with_two_legs(cls, name):
# extremely long code to generate name_full from name
name_full = name
return cls(name_full, 2)
class Human(Animal):
def __init__(self):
super().with_two_legs('Human')
john = Human()
基本上,我想用父类的工厂类方法覆盖子类的 __init__
方法。但是,编写的代码不起作用,并引发:
TypeError: __init__() takes 1 positional argument but 3 were given
我认为这意味着 super().with_two_legs('Human')
将 Human
作为 cls
变量传递。
1) 为什么这不像写的那样工作?我假设 super()
会返回父类(super class)的代理实例,所以 cls
会是 Animal
对吧?
2) 即使是这种情况,我也不认为这段代码能达到我想要的效果,因为类方法返回 Animal
的实例,但我只想初始化 Human
和 classmethod 一样,有什么方法可以实现我想要的行为吗?
我希望这不是一个很明显的问题,我找到了 documentation关于 super()
有点困惑。
最佳答案
super().with_two_legs('Human')
实际上确实调用了 Animal
的 with_two_legs
,但它通过了 Human
作为 cls
,而不是 Animal
。 super()
使代理对象仅用于辅助方法查找,它不会改变传递的内容(它仍然是相同的 self
或 cls
它起源于)。在这种情况下,super()
甚至没有做任何有用的事情,因为 Human
不会覆盖 with_two_legs
,所以:
super().with_two_legs('Human')
表示“从定义它的层次结构中Human
上方的第一个类调用with_two_legs
”,并且:
cls.with_two_legs('Human')
表示“在层次结构中以定义它的 cls
开头的第一个类上调用 with_two_legs
”。只要 Animal
下的类没有定义它,它们就会做同样的事情。
这意味着您的代码在 return cls(name_full, 2)
处中断,因为 cls
仍然是 Human
,而您的 Human .__init__
不接受任何超出 self
的参数。即使您费尽心思让它工作(例如,通过添加两个您忽略的可选参数),这也会导致无限循环,因为 Human.__init__
称为 Animal.with_two_legs
,它又试图构造一个 Human
,再次调用 Human.__init__
。
您尝试做的不是一个好主意;替代构造函数就其性质而言,依赖于类的核心构造函数/初始化器。如果您尝试创建依赖于备用构造函数的核心构造函数/初始化程序,则您创建了循环依赖项。
在这种特殊情况下,我建议避免使用备用构造函数,而是始终显式提供 legs
计数,或者使用执行的中间 TwoLeggedAnimal
类您的替代构造函数的任务。如果你想重用代码,第二个选项只是意味着你的“从名称生成 name_full 的超长代码”可以放在 TwoLeggedAnimal
的 __init__
中;在第一个选项中,您只需编写一个 staticmethod
来分解该代码,以便 with_two_legs
和其他需要使用它的构造函数都可以使用它。
类层次结构类似于:
class Animal:
def __init__(self, name, legs):
self.legs = legs
print(name)
class TwoLeggedAnimal(Animal)
def __init__(self, name):
# extremely long code to generate name_full from name
name_full = name
super().__init__(name_full, 2)
class Human(TwoLeggedAnimal):
def __init__(self):
super().__init__('Human')
常见的代码方法是这样的:
class Animal:
def __init__(self, name, legs):
self.legs = legs
print(name)
@staticmethod
def _make_two_legged_name(basename):
# extremely long code to generate name_full from name
return name_full
@classmethod
def with_two_legs(cls, name):
return cls(cls._make_two_legged_name(name), 2)
class Human(Animal):
def __init__(self):
super().__init__(self._make_two_legged_name('Human'), 2)
旁注:即使您解决了递归问题,您尝试做的事情也不会起作用,因为 __init__
不会制作新实例,它会初始化现有实例。因此,即使您调用 super().with_two_legs('Human')
并且它以某种方式工作,它也会创建并返回一个完全不同的实例,但不会对 self
做任何事情由 __init__
接收,这是实际创建的内容。您能做的最好的事情是:
def __init__(self):
self_template = super().with_two_legs('Human')
# Cheaty way to copy all attributes from self_template to self, assuming no use
# of __slots__
vars(self).update(vars(self_template))
无法在 __init__
中调用备用构造函数并让它隐式更改 self
。关于我能想到的在不创建辅助方法并保留备用构造函数的情况下按照您的预期工作的唯一方法是使用 __new__
而不是 __init__
(所以您可以返回由另一个构造函数创建的实例),并使用备用构造函数做一些糟糕的事情来显式调用顶级类的 __new__
以避免循环调用依赖:
class Animal:
def __new__(cls, name, legs): # Use __new__ instead of __init__
self = super().__new__(cls) # Constructs base object
self.legs = legs
print(name)
return self # Returns initialized object
@classmethod
def with_two_legs(cls, name):
# extremely long code to generate name_full from name
name_full = name
return Animal.__new__(cls, name_full, 2) # Explicitly call Animal's __new__ using correct subclass
class Human(Animal):
def __new__(cls):
return super().with_two_legs('Human') # Return result of alternate constructor
关于python - 在python中用父类方法覆盖__init__,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57366578/
我目前正在寻找一些关于 jQuery 的建议,因为我认为我做错了,即使我得到了我想要的结果。 我想在更改时将输入的值更改为最接近的具有 .milestone 类的输入的值。我想要更改的输入是保持输入,
我已经阅读有关绑定(bind)、调用、申请的文章近一周了,对我来说仍然很复杂。我想我写的这个 jsfiddle 需要它们。然而,我没能做到,因为我仍然很困惑。 我尽力写了一些我上周从遇到这个问题的开发
我有一个项目生成代码。生成时间真的很长,所以我把它分成了多个项目,每个项目产生了整体的 20%。原始 POM 成为“父 POM”,子项依赖于它,仅包含一个单独的 Artifact ID 和一两个更改的
我正在使用局部 View 来创建父 subview 。我最理想的是父 View 上的提交按钮,用于保存子值。 我有以下模型。 public class Course { public int
我刚刚开始学习Rust,并且在理解所有权如何在我的案例中遇到一些麻烦: use std::ops::IndexMut; // =====================================
我是 JavaScript 新手,想了解更多有关它实例化父/子对象的顺序的信息。更具体地说,我想从编译器/浏览器的 Angular 理解以下代码片段。 var parent = { child:
我正在测试 Azure IaaS,并遇到了一个非常基本的问题。我有一个父 VHD 和子 VHD,已使用 csupload 将其作为页面 blob 上传,并且门户中显示图像和磁盘。然后我尝试将 pare
我的应用程序会定期为我坚持使用的对象请求更新 Core Data到网络服务。然后我需要更新我在主要上下文中拥有的对象(默认情况下 AppDelegate 中提供的对象)。编辑对象的不是用户,所以我需要
texT text text text text text 如何直接获取来自.menu ? 里面的 child 不应该采取。
我一直需要影响与其他元素相关的元素,但我的方法有点业余! 即到 // matched item where script is called from LINK 我使用; $(thi
我有两个表: 父子“类别”: id name parent_id 1 Food NULL 2 Pizza 1 3 Pasta
Linux 上的 Python 2.7.6。 我正在使用从父级继承的测试类。父类保存了许多子类共有的许多字段,我需要调用父类的 setUp 方法来初始化这些字段。调用 ParentClass.setU
我有一个处理图像、相册和相册类别的数据库。 一个专辑可以有多个专辑(子专辑),并且只有 1 级深度。 一张专辑仅属于一个专辑类别。 在这里做了一些研究,我相信最合适的数据库模型是这个 album_ca
我有一个关键字表,其中每个关键字都分配有一个 ID,并且是唯一的。我有第二个表,将父关键字的 ID 链接到子关键字的 ID。一个关键字最多可以有大约 800 个 child 或根本没有。 child
我经常使用这个 CSS 选择器 parent>child。我的设计在 Mozilla 和 Opera 中看起来不错。 但在 IE 中,它很糟糕。我知道 > 在 IE 中无法识别,但在 IE 中有什么替
我一直在用一个父对象构建一个系统,它在其中创建各种子对象,每个子对象都需要一个主对象才能运行。现在,到目前为止,我一直在创建 shared_ptr和 Child* ,所以当 Parent 和 所有 C
我从以下两个类中收到序列化兼容性错误。只有父类CommericalCustomer 实现了序列化。当具有如下所示的父/子关系时,使用可序列化接口(interface)的正确方法是什么? public
我正在开发一个程序并学习父/子进程。目前我的子进程是 exit(variable); 在我的 main() 中我有: signal(SIGCHLD, chldHandler); 在我的 main()
考虑以下两个具体类: public class A { protected void foo() { System.out.println("A foo"); bar
所以,我正在尝试建立这样的父/子类关系: class ParentClass where C : ChildClass { public void AddChild(C child)
我是一名优秀的程序员,十分优秀!