1

所以我在scala中有以下简单的程序:

object CViewerMainWindow extends SimpleSwingApplication {
    var i = 0
    def top = new MainFrame {
        title = "Hello, World!"
        preferredSize = new Dimension(320, 240)
        // maximize
        visible = true
        contents = new Label("Here is the contents!")
        listenTo(top)
        reactions += {
            case UIElementResized(source) => println(source.size)

    }
}

.

object CViewer {
  def main(args: Array[String]): Unit = {
    val coreWindow = CViewerMainWindow
    coreWindow.top
  }
}

我曾希望它会创建一个普通的窗口。相反,我得到了这个:

在此处输入图像描述

4

1 回答 1

2

您正在创建一个无限循环:

def top = new MainFrame {
  listenTo(top)
}

也就是说,top正在呼叫top正在呼叫top......以下应该有效:

def top = new MainFrame {
  listenTo(this)
}

但更好更安全的方法是禁止主框架实例化多次:

lazy val top = new MainFrame {
  listenTo(this)
}
于 2016-06-22T10:05:27.863 回答