这个haxe错误是什么意思:普通变量不能用'super'访问,使用'this'反而
我有一个 haxe 代码如下:
private function get_parent() : DisplayObjectContainer
{
return !!(_parent != null) ? _parent : super.parent;
}
但是,Haxe 总是报告 super.parent 错误:普通变量无法使用“super”访问,请使用“this”代替
谁可以帮助我?多谢。
I have a haxe code at the below:
private function get_parent() : DisplayObjectContainer
{
return !!(_parent != null) ? _parent : super.parent;
}
However, Haxe always reports super.parent with error:Normal variables cannot be accessed with 'super', use 'this' instead
Who can help me? Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您的类已经是一个 DisplayObject,因此父级不应该有多种定义它的可能性。您可以尝试
return this.parent;
吗?It seems your class is already a DisplayObject, and as such the parent should not have multiple possibilities for where it is defined. Can you simply try
return this.parent;
?