问题 I have made a game as an applet however I want to add a "start" "close" menu at the beginning. I was wondering if its possible to make the menu as a separate applet and when "start" is pressed, it will call and run the other applet? 回答1: First of all, don't, this isn't really how you code should work. Your start/close menus should be within the same applet context/container. You could use something like CardLayout to vacillate the switching of the views between different panels. This allows