我一直在学习Java的艺术与科学文本和SEE CS106A class 。在引入交互式图形程序之前,一切都进行得很顺利。以下代码直接取自文本,将无法编译:

/*
 * File: DrawLines.java
 * -----------------------
 * This program allows a user to draw lines to the canvas.
 */

import acm.graphics.*;
import acm.program.*;
import java.awt.event.*;

public class DrawLines extends GraphicsProgram {

    public void run() {
        addMouseListeners();
    }

    /** Called on mouse press to record the coordinates of the click */
    public void mousePressed(MouseEvent e) {
        double x = e.getX();
        double y = e.getY();
        line = new GLine(x, y, x, y);
        add(line);
    }

    /** Called on mouse drag to reposition the object */
    public void mouseDragged(MouseEvent e) {
        double x = e.getX();
        double y = e.getY();
        line.setEndPoint(x, y);
    }

    private GLine line;

}

它在第14行失败,出现cannot find symbol: method addMouseListeners()错误。没有该方法调用的ACM ConsolePrograms和GraphicsPrograms可以正常工作。据我所知这个方法should be valid

我在这里做错什么了吗? ACM文档和教科书是否过时?如何在此处添加鼠标侦听器?

最佳答案

事实证明,在CS106A的第一次分配中使用的库karel.jar会干扰addMouseListeners()方法。从源中删除karel.jar可解决此问题。

08-16 18:33