Java Applet: What is the usage of Init(), Start(), Stop(), and Final()?
C开发者_运维知识库an we only have Start() and Stop() instead?
Any one know?
You don't have to implement init() and destroy() if you don't need to, they're there as hooks if you need them.
The javadoc is very clear on what you should and shouldn't implement.
精彩评论