Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Scala REPL is behaving oddly or perhaps this is the expected behavior. When I create a MainFrame object and set its visibility true, a window is displayed. However, If I close the window the Scala REPL exits to the terminal. Sample session:

 ~$ scala
 scala> import swing._
 scala> val frame = new MainFrame()
 scala> frame.visible = true
 ~$                             //when I close the window

I am using scala 2.9.1 on kubuntu

share|improve this question

2 Answers

up vote 6 down vote accepted

It's the MainFrame class itself, coupled with the not-very-OO behaviour of System.exit.

This is the entire source of MainFrame:

class MainFrame extends Frame {
  override def closeOperation() { sys.exit(0) }
}

Looking at that, it's pretty clear that when the window is closed, System.exit is called and the JVM will quit.

If you were just experimenting when you found this, the workaround is to just not do this! If you want to use a frame in the REPL, then you can either override closeOperation to not exit the JVM - or just use a Frame (since the only additional functionality with MainFrame is the JVM exit behaviour).

share|improve this answer

As it says in the documentation:

Shuts down the framework and quits the application when closed.

(I.e., it shuts down the JVM which the REPL runs in.)

To prevent this behavior you could either simply use a Frame instead, or override the closeOperation method.

Here is the source for MainFrame.scala for reference:

/**
 * A frame that can be used for main application windows. Shuts down the
 * framework and quits the application when closed.
 */
class MainFrame extends Frame {
  override def closeOperation() { sys.exit(0) }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.