我有一个数字数组,想从位置“索引”中检索其中一个值。我查看了 Java 文档http://java.sun.com/j2se/1.5.0/docs/api/java/lang/reflect/Array.html但我的代码仍未编译。
这是我的方法:
public class ConvexPolygon implements Shape
{
java.awt.Point[] vertices;
public ConvexPolygon(java.awt.Point[] vertices)
{
this.vertices = vertices;
this.color = color;
this.filled = filled;
}
java.awt.Point getVertex(int index)
{
Point vertex;
vertex = get(Point vertices, int index);
}
我在代表点的数组中有数字。值索引将是数组 verities 的位置。我能做些什么来完成这项工作?谢谢 !