java中的鼠標事件有:1.mousePressed,鼠標按下事件;2.mouseReleased,鼠標松開事件;3.mouseClicked,鼠標點擊事件;4.mouseEntered,鼠標進進事件;5.mouseExit,鼠標離開事件;
java中的鼠標事件有以下幾種
1.mousePressed
java中mousePressed是指鼠標按下事件,當按下鼠標時,監視器將會調用mousePressed方法對事件進行處理。
2.mouseReleased
java中mouseReleased是指鼠標松開事件,當松開鼠標時,監視器將會調用mouseReleased方法對事件進行處理。
3.mouseClicked
java中mouseClicked是指鼠標點擊事件,當點擊鼠標時,監視器將會調用mouseClicked方法對事件進行處理。
4.mouseEntered
java中mouseEntered是指鼠標進進事件,當鼠標進進時,監視器將會調用mouseEntered方法對事件進行處理。
5.mouseExit
java中mouseExit是指鼠標離開事件,當鼠標離開容器時,監視器將會調用mouseExit方法對事件進行處理。