DART:扩展类中抽象方法的实现

发布于 2025-02-13 22:43:42 字数 309 浏览 0 评论 0原文

我在文件myclass.dart中有两个类:

abstract class A{
  _myAbstractMethod();
}

class B extends A{

}

在这一点上,汇编说:缺少 One._method 的具体实现。 这是正确的行为!

当我将每个班级放在分离的文件上时,问题出现了。当我将B类声明移至另一个文件时,该汇编不再告诉丢失的实现。

请注意A类中的方法是私有的,并且仅在分离文件中的每个类都发生“问题”。

I have two class in file myclass.dart:

abstract class A{
  _myAbstractMethod();
}

class B extends A{

}

At this point the compilation says: MISSING CONCRETE IMPLEMENTATION OF One._Method.
This is the correct behavior!

The problem came when I put each class on separated files. When I move class B declaration to another file, the compilation do not tell anymore the missing implementation.

Pay attention that the method on class A is private, and the "problem" only occurs with each class in separated files.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

彩扇题诗 2025-02-20 22:43:42

这是预期的行为,因为类a上的方法是库私有的。

这意味着,当放入第二个库时,类b不知道 a具有一种名为_MyAbStractMethod的方法,如果这样做,它甚至无法编写名称(在b的库中编写_MyAbstractMethod代表第二个库的私人名称)。

因此,从b的角度来看,它正确实现了a's(空)接口。
一切都很好。

a类不同意,但无能为力。
要使b类完整,编译器添加了合成_MyAbstractMethod(使用a的名称)实现,该实现在调用时会投掷。

这是预期的行为。

This is expected behavior because the method on the class A is library private.

That means that when put in a second library, the class B doesn't know that A has a method named _myAbstractMethod, and if it did, it couldn't even write the name (writing _myAbstractMethod in the library of B represents a different name, private to the second library).

So, from B's perspective it correctly implements A's (empty) interface.
All is well.

The A class disagrees, but there is nothing it can do.
To make the B class complete, the compiler adds a synthetic _myAbstractMethod (using A's name) implementation which throws when called.

This is expected behavior.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文