开发者

How to make a Scala Applet whose Applet class is a singleton?

开发者 https://www.devze.com 2022-12-24 03:55 出处:网络
I don\'t know if a solution exists but it would be highly desirable. I\'m making a Scala Applet, and I want the main Applet class to be a singleton so it can be accessed elsewhere in the applet, sort

I don't know if a solution exists but it would be highly desirable.

I'm making a Scala Applet, and I want the main Applet class to be a singleton so it can be accessed elsewhere in the applet, sort of like:

object App extends Applet {
  def init {
    // do init here
  }
}

Instead I have to make the App class a normal instantiatable class otherwise it complains because the contructor is private. So the ugly hack I have is to go:

object A {
  var pp: App = null
}

class App extends Applet {
  A.pp = this
  def init {
    // do init here
  }
}

I really hate this, and is one of the reasons I don开发者_运维技巧't like making applets in Scala right now.

Any better solution? It would be nice...

edit -- I found a pretty decent hack solution using implicit conversion. Declare your Applet class as a normal class, and then add:

class Appable {}

object App extends Appable {
implicit def appable2App(a:Appable) = inst
  var inst: App = null
}

Then just set the instance variable when the Applet is created, and you can access everything as if it were a singleton.


What you're asking for is counter to the applet execution model. Specifically, there are no guarantees that you won't have multiple copies of the applet running in the same JVM. The default is to run every applet in the same JVM (including multiple copies of the same applet if necessary). See e.g. Sun's tutorial.

That's why applets are specified the way that they are instead of with a static public void method. Can't the rest of your code take the applet as a parameter?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号