我有一个班级 whigh 有一个按预期工作的单一方法“createChart”。我现在正在尝试添加另一个方法 createChart 的副本,但 Eclipse 无法识别它。Intellsenses 只看到第一种方法。其他地方没有突出显示的错误。
我测试了我是否可以使用任何其他简单的方法 - 但没有一个被识别。
public class Histogram extends JFrame {
private static final long serialVersionUID = 1L;
public static void main(String[] args) {
}
public Histogram() {
}
public JFreeChart createChart(double[] v1) {
//does stuff
return chart;
}
public JFreeChart createChart2(double[] v1) {
//does other stuff
return chart;
}
}