学习Java中的事件处理

时间:2015-03-07 15:20:37

标签: java event-handling

我期待学习Java中的事件处理,所以,我用Google搜索了事件处理,并通过以下链接: WikiBook on Event Handling

但它有一个非常简单的例子,没有线程安全和其他问题。我希望通过良好且实用的示例全面了解事件处理模型。任何人都可以提出任何有用的资源吗?

1 个答案:

答案 0 :(得分:0)

Java文档适用于Java中的事件处理:

http://docs.oracle.com/javase/tutorial/uiswing/events/

您可以从按钮的最简单的事件处理程序开始:

http://docs.oracle.com/javase/tutorial/uiswing/events/intro.html

然后转向事件和听众的一般原则:

http://docs.oracle.com/javase/tutorial/uiswing/events/generalrules.html

然后你有图形事件,如swing:

http://docs.oracle.com/javase/tutorial/uiswing/events/eventsandcomponents.html

以及所有类型的事件以及如何处理它们:

http://docs.oracle.com/javase/tutorial/uiswing/events/handling.html

IBM文档在处理事件时提供了很好的线程问题:

http://www.ibm.com/developerworks/library/j-jtp07265/