如果可能的话,如何method
从另一个方法调用 a return
?
例如...
class Example {
public static void main(String[] args) {
Point t1 = new Point(0,0);
Point t2 = new Point(0,1);
ArrayList pointContainer = new ArrayList();
pointContainer.add(0,t1);
pointContainer.add(0,t2); // We now have an ArrayList containing t1 & t2
System.out.println(pointContainer.get(1).getLocation()); // The problem area
}
}
在写得不好的例子中,我试图在 的索引项 1 上调用getLocation()
方法(的一部分) 。java.swing.awt
pointContainer
尝试编译程序时,出现以下错误...
HW.java:20: error: cannot find symbol
System.out.println(test.get(1).getLocation());
^
symbol: method getLocation()
location: class Object
有人可以帮我解决这个问题。