Java小程序不';不要利用鼠标事件

Java小程序不';不要利用鼠标事件,java,applet,Java,Applet,代码如下: import java.awt.*; import java.awt.event.*; import java.applet.*; import java.util.Vector; public class PainterNN extends Applet implements MouseListener, MouseMotionListener{ class MyShape{ int mx; int my; Color mc; MyS

代码如下:

import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import java.util.Vector;


public class PainterNN extends Applet implements MouseListener, MouseMotionListener{

    class MyShape{
    int mx;
    int my;
    Color mc;

    MyShape(int x, int y, Color c){
        mx=x;
        my=y;
        mc=c;
        }

    void Render(Graphics g){
          g.setColor(mc);
        g.fillOval (mx,my,10,10);
        }
}


    Vector<MyShape> vec = new Vector();   


    public void init() {
        }

    public void paint(Graphics g) {
        for(int i =0; i < vec.size() ; i=i+1){

        MyShape s = vec.elementAt(i);
        s.Render(g);
        }
    }

    public void mouseEntered( MouseEvent e ) {
      // called when the pointer enters the applet's rectangular area
   }
           public void mouseExited( MouseEvent e ) {
      // called when the pointer leaves the applet's rectangular area
   }
           public void mouseClicked( MouseEvent e ) {
      // called after a press and release of a mouse button
      // with no motion in between
      // (If the user presses, drags, and then releases, there will be
      // no click event generated.)
   }
           public void mousePressed( MouseEvent e ) {  // called after a button is pressed down
      repaint();
      // "Consume" the event so it won't be processed in the
      // default manner by the source which generated it.
      e.consume();
   }
   public void mouseReleased( MouseEvent e ) {  // called after a button is released
       repaint();
      e.consume();
   }
   public void mouseMoved( MouseEvent e ) {  // called during motion when no buttons are down
      e.consume();
   }
   public void mouseDragged( MouseEvent e ) {  // called during motion with buttons down
     int mx = e.getX();
     int my = e.getY();

      vec.add(new MyShape(mx,my,new Color(0,255,0)));
      repaint();
      e.consume();
   }


}
import java.awt.*;
导入java.awt.event.*;
导入java.applet.*;
导入java.util.Vector;
公共类PainterNN扩展Applet实现MouseListener、MouseMotionListener{
类MyShape{
int-mx;
intmy;
彩色mc;
MyShape(整数x,整数y,颜色c){
mx=x;
my=y;
mc=c;
}
无效渲染(图形g){
g、 setColor(mc);
g、 圆角(mx,my,10,10);
}
}
向量向量=新向量();
公共void init(){
}
公共空间涂料(图g){
对于(int i=0;i

它应该在鼠标拖动时画圆圈,但它没有。为什么?

您必须添加鼠标侦听器

public void init()
{
    this.addMouseListener(this);
    this.addMouseMotionListener(this);
}


提示:尝试在IDE中使用Ctrl-Shift-F。通常,它会美化您的代码。(Eclipse和NetBeans支持这一点)

该类实现了
MouseListener