This 关键字与 scala 和匿名函数/类一起使用

发布于 2024-10-27 12:54:26 字数 378 浏览 0 评论 0原文

在 Java 中,我可以引用特定类的外部实例: 抱歉,我就是这个意思。

object obj extends SomeOtherClass {
def myMethodOfSomeInstance = {
val uiThread = new SomeClass {
          def run: Unit = {
            chooser.showOpenDialog(SomeOtherClass.this)            
          }
        }
}

... 这段代码无法编译,但是在这一行,我想引用父实例?我该怎么做?

选择器.showOpenDialog(SomeOtherClass.this)

In Java, I could reference the outer instance of a particular class:
Sorry, I meant this.

object obj extends SomeOtherClass {
def myMethodOfSomeInstance = {
val uiThread = new SomeClass {
          def run: Unit = {
            chooser.showOpenDialog(SomeOtherClass.this)            
          }
        }
}

...
This code does not compile, but on this line, I want to reference the parent instance? How do I do that?

chooser.showOpenDialog(SomeOtherClass.this)

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

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

发布评论

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

评论(1

贪了杯 2024-11-03 12:54:26

您可以在您可以引用的封闭对象中使用自引用:

object SomeObject { outer =>
  def myMethodOfSomeInstance = {
    val uiThread = new SomeClass {
      def run: Unit = {
        chooser.showOpenDialog(outer)
      }
    }
  }
}

编辑:顺便说一下,您的对象声明必须是object obj extends SomeOtherClass才能成为有效的 Scala 代码。然后,您还可以使用 obj.this 引用封闭对象。

You can use a self reference in the enclosing object that you can refer to:

object SomeObject { outer =>
  def myMethodOfSomeInstance = {
    val uiThread = new SomeClass {
      def run: Unit = {
        chooser.showOpenDialog(outer)
      }
    }
  }
}

EDIT: By the way your declaration of the object would have to be object obj extends SomeOtherClass for being valid scala code. You could then also refer to the enclosing object with obj.this.

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