根据以下代码,如何从bar()
课程中访问Parent
?
class Parent{
constructor(){
}
foo(){
this.bar() // not defined
}
}
class Child extends Parent{
constructor(){
super();
}
bar(){
}
}
答案 0 :(得分:0)
您确实可以像访问它一样访问它,但要在this
上实际定义它,您必须创建一个Child
实例而不是Parent
实例:
var c = new Child();
c.bar() // works
c.foo() // calls c.bar() as well