标签:mystra 设计模式 模板方法模式 applet java
本文地址: http://blog.csdn.net/caroline_wendy
参考模板方法模式(template method pattern): http://blog.csdn.net/caroline_wendy/article/details/32159455
模板方法模式(template method pattern), applet就是一个能够在网页上面执行的小程序, applet有很多钩子(hook).
具体的applet大量使用钩子来提供行为. 因为这些行为是作为钩子实现的, 所以Applet类就不用去实现它们.
代码:
/** * @time 2014年6月20日 */ package template_method.applet; import java.applet.Applet; import java.awt.Graphics; /** * @author C.L.Wang * */ public class MyApplet extends Applet { String message; public void init() { message = "Hello World, I‘m alive! "; repaint(); } public void start() { message = "Now I‘m starting up..."; repaint(); } public void stop() { message = "Oh, now I‘m being stopped..."; repaint(); } public void destroy() { } public void paint(Graphics g) { g.drawString(message, 5, 15); } }
设计模式 - 模板方法模式(template method pattern) Applet 详解,布布扣,bubuko.com
设计模式 - 模板方法模式(template method pattern) Applet 详解
标签:mystra 设计模式 模板方法模式 applet java
原文地址:http://blog.csdn.net/caroline_wendy/article/details/32719163