- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Python @property inheritance the right way解释如何调用父 setter 。
class Number:
def __init__(self):
self._value = None
@property
def value(self):
assert self._value is not None
return self._value
@value.setter
def value(self, new_value):
self._value = new_value
class Integer(Number):
@property
def value(self):
return super().value
@value.setter
def value(self, new_value):
_value = int(new_value)
super(Integer, type(self)).value.fset(self, _value) # <----- OK with using type(self)
# super(Integer, self).value.fset(self, _value) # <----- Assert error with self
i = Integer()
i.value = 1 # cause assertion error with "super(Integer, self)"
print(i.value)
使用 super(Integer, type(self)).value.fset(self, _value)
,i.value = 1
按预期调用 setter 。
使用 super(Integer, self).value.fset(self, _value)
,i.value = 1
调用 getter 而不是 setter,因此导致断言错误。
AssertionError Traceback (most recent call last)
<ipython-input-8-2c57a07c128d> in <module>
35
36 i = Integer()
---> 37 i.value = 1
38 print(i.value)
<ipython-input-8-2c57a07c128d> in value(self, new_value)
32 _value = int(new_value)
33 #super(Integer, type(self)).value.fset(self, _value)
---> 34 super(Integer, self).value.fset(self, _value)
35
36 i = Integer()
<ipython-input-8-2c57a07c128d> in value(self)
10 @property
11 def value(self):
---> 12 assert self._value is not None
13 return self._value
请帮助理解为什么 super(Integer, self).value.fset(self, _value)
尽管调用了 fset 但会转到 getter 而不是 setter
。阅读文档和文章,在我看来传递对象 self
而不是类型/类 type(self)
是访问绑定(bind)到实例本身的方法的正确方法, 但它不起作用。
super([type[, object-or-type]])
The object-or-type determines the method resolution order to besearched. The search starts from the class right after the type.
For example, if mro of object-or-type is D -> B -> C -> A ->object and the value of type is B, then super() searches C -> A ->object.
The mro attribute of the object-or-type lists the methodresolution search order used by both getattr() and super(). Theattribute is dynamic and can change whenever the inheritance hierarchyis updated.
Supercharge Your Classes With Python super()
In Python 3, the super(Square, self) call is equivalent to theparameterless super() call. The first parameter refers to the subclassSquare, while the second parameter refers to a Square object which, inthis case, is self. You can call super() with other classes as well:
def surface_area(self):
face_area = super(Square, self).area()
return face_area * 6
def volume(self):
face_area = super(Square, self).area()
return face_area * self.lengthWhat about the second parameter? Remember, this is an object that isan instance of the class used as the first parameter. For an example,isinstance(Cube, Square) must return True.
By including an instantiated object, super() returns a bound method: amethod that is bound to the object, which gives the method theobject’s context such as any instance attributes. If this parameter isnot included, the method returned is just a function, unassociatedwith an object’s context.
最佳答案
super(Integer, self).value.fset(self, _value)
的问题(或更简单的等价物,super().value.fset(self, _value)
) 发生在您到达 fset
之前。描述符协议(protocol)参与对一个实例的所有查找,使其通过执行 super(Integer, self).value
(或 super().value
)简单地调用 getter ).这就是为什么您继承的 setter/getter 首先起作用的原因;它调用了 property
描述符,并获得了它产生的值。
为了绕过描述符协议(protocol)(更准确地说,从实例转移到类级别的调用,其中 property
在类级别场景中没有做任何特殊的事情),您需要执行查找类本身,而不是它的一个实例。 super(Integer, type(self))
调用 super
的形式返回一个 super
对象绑定(bind)在类级别,而不是实例级别,允许您检索原始描述符本身,而不是调用描述符并获取它产生的值。获得原始描述符后,您可以访问和调用附加到它的 fset
函数。
当 super
不 涉及时,这与您遇到的问题相同。如果你有一个 Number
的实例,并且想直接访问 fset
函数(而不是通过赋值隐式调用它),你必须这样做:
num = Number()
type(num).value.fset(num, 1)
因为在做:
num.value.fset(num, 1)
当您检索 num.value
时失败(获取 getter 生成的 None
),然后尝试在 上查找
。fset
无
关于python - 为什么这个父类setter调用使用type(self)而不是self?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66512930/
让我们写一个简单的类在我的脑海中解释: class SomeClass { var happyToUsed = 10 } 并创建一个对象 let someObject = SomeClass(
采用 self 的方法与采用 &self 甚至 &mut self 的方法有什么区别? 例如 impl SomeStruct { fn example1(self) { } fn ex
请观察以下代码(Win10上的python 3.6,PyCharm),函数thread0(self)作为线程成功启动,但是 thread1(self)似乎与thread0(self)不同已设置。 se
backbone.js 开始于: //Establish the root object, `window` (`self`) in the browser, or `global` on the s
做的事: self = self.init; return self; 在 Objective-C 中具有相同的效果: self.init() 快速? 例如,在这种情况下: else if([form
我查看了关于堆栈溢出的一些关于使用[weak self]和[unowned self]的问题的评论。我需要确保我理解正确。 我正在使用最新的 Xcode - Xcode 13.4,最新的 macOS
我面临在以下模型类代码中的 self.init 调用或分配给 self 之前使用 self 的错误tableview单元格项目,它发生在我尝试获取表格单元格项目的文档ID之后。 应该做什么?请推荐。
晚上好。 我对在 Swift 中转义(异步)闭包有疑问,我想知道哪种方法是解决它的最佳方法。 有一个示例函数。 func exampleFunction() { functionWithEsca
我需要在内心深处保持坚强的自我。 我知道声明[weak self]就够了外封闭仅一次。 但是guard let self = self else { return }呢? ,是否也足以为外部闭包声明一
代码 use std::{ fs::self, io::self, }; fn rmdir(path: impl AsRef) -> io::Result { fs::remo
我检查了共享相同主题的问题,但没有一个解决我遇到的这种奇怪行为: 说我有一个简单的老学校struct : struct Person { var name: String var age:
我应该解释为什么我的问题不是重复的:TypeError: can only concatenate list (not “str”) to list ...所以它不是重复的,因为该帖子处理代码中出现的
我有一个 trait,它接受一个类型参数,我想说实现这个 trait 的对象也会符合这个类型参数(使用泛型,为了 Java 的兼容性) 以下代码: trait HandleOwner[SELF
这个问题在这里已经有了答案: Why would a JavaScript variable start with a dollar sign? [duplicate] (16 个答案) 关闭 8
我总是找到一些类似的代码newPromise.promiseDispatch.apply(newPromise, message),我不明白为什么不使用newPromise.promiseDispat
我看到类似的模式 def __init__(self, x, y, z): ... self.x = x self.y = y self.z = z ... 非
mysql查询示例: SELECT a1.* FROM agreement a1 LEFT JOIN agreement a2 on a1.agreementType = a2.agreementTy
self.delegate = self; 这样做有什么问题吗?正确的做法是什么? 谢谢,尼尔。 代码: (UITextField*)initWith:(id)sender:(float)X:(flo
为什么要声明self在类中需要的结构中不需要?我不知道是否还有其他例子说明了这种情况,但在转义闭包的情况下,确实如此。如果闭包是非可选的(因此是非转义的),则不需要声明 self在两者中的任何一个。
这个问题已经有答案了: What does the ampersand (&) before `self` mean in Rust? (1 个回答) 已关闭去年。 我不清楚 self 之间有什么区别
我是一名优秀的程序员,十分优秀!