- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在上课。
class A {
constructor() {
}
getThis() {
return this;
}
}
class B extends A {
constructor() {
super();
this.superclass = super; // SyntaxError: 'super' keyword unexpected here
this.superclass = super.getThis(); // this.superclass is this(B and not A)
}
}
如何访问父类(super class)(而不是属性或方法)?
class A {
constructor() {
this.a = 1;
}
getThis() {
return this;
}
}
class B extends A {
constructor() {
super();
this.b = 2;
console.log( [get the super class] ); // A { a: 1 }
console.log(this); // B { a: 1, b: 2 }
}
}
是否可以通过数据获得父类(super class)?
最佳答案
这样做很少对您有用,但使用 class
时有几种方法句法:
您可以获得B
的原型(prototype):
Object.getPrototypeOf(B) === A // true
之所以有效,是因为
class
语法分配
A
构造函数作为
B
的原型(prototype)构造函数(这很方便,这意味着
B
从
A
继承静态方法)。
constructor
来完成。
B.prototype
原型(prototype)的属性:
Object.getPrototypeOf(B.prototype).constructor === A // true
或者如果你想使用
B
的实例作为您的起点(在此示例中为
this
):
Object.getPrototypeOf(Object.getPrototypeOf(this)).constructor === A // true
现场示例:
class A {
constructor() {
}
}
class B extends A {
constructor() {
super();
console.log(Object.getPrototypeOf(B) === A); // true
console.log(Object.getPrototypeOf(B.prototype).constructor === A); // true
// Or to get it from `this`:
console.log(Object.getPrototypeOf(Object.getPrototypeOf(this)).constructor === A); // true
}
}
new B();
getThis
不过,这暗示了一种误解。当你这样做
new B
创建
B
的实例,有
不是 创建了一个单独的对象,它只是
A
的一个实例.
new B
的唯一对象创建是
A
的特征的组合和
B
作为继承和初始化的结果。没有单独的
A
实例。 (有
A.prototype
,但这不是
A
的实例,它只是用作
A
实例的原型(prototype)的对象。)
Is it possible to get the super class with the data?
B
的一个实例
是
A
的一个实例,所以从这个意义上说,"is",因为你已经拥有它,因为你有一个
B
的实例.但是没有单独的
A
实例。那是
仅限 一个
A
而不是
B
(见上文),所以从这个意义上说,“不”。
A
和
B
在您的编辑中,在执行
new B
之前,你在内存中有这样的东西,基本上是两个构造函数
A
和
B
及其相关的
A.prototype
和
B.prototype
对象:
+−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−+ | | v | +−−−−−−−−−−−−−−−+ |A−−−−−>| Function A | +−>Function.prototype | +−−−−−−−−−−−−−−−+ | | | [[Prototype]] |−−+ | | name: "A" | +−−−−−−−−−−−−−−−+ | | prototype |−−−−>| A.prototype | | +−−−−−−−−−−−−−−−+ +−−−−−−−−−−−−−−−+ | ^ | [[Prototype]] |−−−−−>Object.prototype | | | constructor |−−−−−−−−−−−−−−−−−−−−−−−−−+ | +−−−−−−−−−−−−−−−+ +−−−−−−−−−−+ ^ | | +−−−−−−−−−−−−−−−+ | +−−−−−−−−−−+B−−−−−>| Function B | | | +−−−−−−−−−−−−−−−+ | | | [[Prototype]] |−−+ | | name: "B" | +−−−−−−−−−−−−−−−+ | | prototype |−−−−>| B.prototype | | +−−−−−−−−−−−−−−−+ +−−−−−−−−−−−−−−−+ | ^ | [[Prototype]] |−−+ | | constructor |−−+ | +−−−−−−−−−−−−−−−+ | | | +−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−+
(Some details omitted.)
Now, if you do:
const b = new B();
创建一个
单目的。
A
构造函数添加
a
新对象的属性,以及
B
构造函数添加
b
该新对象的属性:
a
的单独对象和
b
.
this
那
A
的代码用于
this.a = 1
与
this
是同一个对象那
B
的代码用于
this.b = 2
.
关于javascript - 在 JavaScript 中获取父类(super class),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66290599/
问题比较Java,但是我想在Android中实现: 假设有 3 个或更多类相互扩展: class A { ... int color; ... } class B extend
我知道标题听起来有点奇怪,但这正是我愿意做的。简单解释:A类是B类的子类,B类也是C类的子类>. 现在,所有这些类都包含方法m()。在我的 A 类中,这是我唯一可以访问的类,因为其他类仅在运行时可用,
我有一个 UIViewController 类 A 和 B。 A 使用以下方式加载 B:[A.view addSubView B.view]。 B 有一个带有“后退”按钮的导航栏。我想在单击时返回到
我有以下(第三方)类结构。我们将调用第三方项目 ProjectSeriously,并注意我使用 System.out.println 代替其他复杂的功能(100 行代码) . class A {
在下面的代码中,我从 Game 扩展了 MyGame。我有两个问题: 我们是否需要为所有render()、dispose()、pause()调用super方法 和 resize(w,h)?很多人都没有
例如,假设我想在调用 super.viewDidLoad() 时跳过一级。所以我希望能够做这样的事情: override func viewDidLoad() { super.super.vi
public class Faculty extends Employee { public static void main(String[] args) { new Fac
假设我有: class Superclass { //fields... methodA() {...} methodB() {...} ... } class Subclass exte
这个问题在这里已经有了答案: Why is super.super.method(); not allowed in Java? (22 个答案) 关闭 9 年前。 我怀疑我想做的事情是否可行。我有
我有一个实现 Initializable 的类。 public abstract class ExampleClass implements Initializable { public vo
我想知道,我有这个大数组,是否可以只在内存中使用一次而不是每个线程一次?以 stackoverflow 上的标签为例。他们几乎从不改变,为什么不为他们留下一个内存点呢?甚至可能将该数组永久保存在内存中
假设这三个类具有这个简单的层次结构: class A { func foo() { print("A") } } class B: A { override fu
有没有办法在 TypeScript 中调用 super.super.methodName。我想避免调用super.methodName,但我想调用二祖的methodName方法。 谢谢。 最佳答案 T
这个问题已经有答案了: When do I use super()? (11 个回答) 已关闭 7 年前。 package Geometry; public abstract class Geomet
我必须执行and()在我的实现 Predicate 的业务对象上. 出现问题的代码是 and() 行调用: Predicate predicate = new M
我有一个实现接口(interface)的抽象父类(super class): public abstract class FooMatrix implements Matrix { publi
我有四个 UIView:viewA 是 Root View ,它有 viewB 作为它的 subview 。 viewB 将 viewC 作为其 subview ,而 viewC 将 viewD 作为
有什么区别: class Child(SomeBaseClass): def __init__(self): super(Child, self).__init__() 和:
我有一个通用接口(interface) interface ListList extends List> .由于某些原因,我无法转换 ListList至 List> .有什么方法可以做到吗?为什么它不
我想调用带有两个参数的父类(super class)的构造函数,所以我调用了 super(arguments),但是编译器说: “类 Person 中的构造函数 Person 不能应用于给定类型; 要
我是一名优秀的程序员,十分优秀!