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
誰かがこの問題を手伝ってくれませんか。