Topic: java 事件处理 |
Print this page |
1.java 事件处理 | Copy to clipboard |
Posted by: maomaocg Posted on: 2005-07-16 08:29 怎样进行事件的处理?麻烦给一个实例!谢谢! |
2.Re:java 事件处理 [Re: maomaocg] | Copy to clipboard |
Posted by: ranchgirl Posted on: 2005-07-16 09:24 Do a google search on "java event handling example" You will get everything, more than you expected. If you give me a fish, you feed me for the day. If you teach me how to fish, you feed me for life. |
3.Re:java 事件处理 [Re: maomaocg] | Copy to clipboard |
Posted by: arthas1982 Posted on: 2005-07-19 10:39 J2SE里我熟悉的事件处理有两种,一种是java.util包里的提供的Observable类及Observer接口,Observable:该类的一个对象实例通常根据类中的数据生成事件;Observer:它由需要将自己向 Observable 对象实例注册的类实现。实现 Observer 接口的类必须实现 notify() 方法。 再者就是java.beans包里,绑定属性(Bound Property)模式:这种模式创建细粒度的事件、单个属性;多点广播事件(Multicast Event)模式:这种模式将 JavaBean 事件从属性的粒度退耦。它也为注册特定事件创建了一种模式。有了多点广播事件模式,一个事件的粒度成为该事件本身,与触发该事件的对象实例耦合。IBM网站上有很好的教材,https://www6.software.ibm.com/developerworks/cn/education/java/j-delivery/tutorial/index.html |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |