Computer questions (Elementary)-mouse control small ball instance code (Java)

Source: Internet
Author: User

Computer questions (Elementary)-mouse control small ball instance code (Java)

In this section, you can move the ball following the mouse. The Code is as follows:

 

Import java. awt. color; import java. awt. frame; import java. awt. graphics; import java. awt. panel; import java. awt. event. mouseEvent; import java. awt. event. mouseMotionListener; public class KeyListenerDemo {public static void main (String [] args) {Frame frame = new Frame (); frame. setSize (800,800); frame. setBackground (Color. BLACK); MyPanel myPanel = new MyPanel (); frame. add (myPanel); frame. addMouseMotionListener (myPanel); myPanel. addMouseMotionListener (myPanel); frame. show () ;}} class MyPanel extends Panel implements MouseMotionListener {int x = 150; int y = 150; @ Overridepublic void paint (Graphics g) {g. setColor (Color. WHITE); g. fillOval (x, y, 20, 20) ;}@ Overridepublic void mouseDragged (MouseEvent e) {}@ Overridepublic void mouseMoved (MouseEvent e) {x = e. getX (); y = e. getY (); repaint ();}}

The code running example is as follows:

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.