⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e551. the quintessential applet.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
Every applet must subclass Applet. 
    import java.applet.*;
    import java.awt.*;
    
    public class BasicApplet extends Applet {
        // This method is called once by the browser when it starts the applet.
        public void init() {
        }
    
        // This method is called whenever the page containing this applet is made visible.
        public void start() {
        }
    
        // This method is called whenever the page containing this applet is not visible.
        public void stop() {
        }
    
        // This method is called once when the browser destroys this applet.
        public void destroy() {
        }
    
        // This method is called whenever this applet needs to repaint itself.
        public void paint(Graphics g) {
        }
    }

Here is an example of an HTML file that will cause the browser to load and start the applet: 
    <applet code=BasicApplet width=100 height=100>
    </applet>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -