ok so i need to fill an array with integers based on a number that i specify in another part of the program. This is what I have so far:
public abstract class Polygon implements Shape {
//numSides is the number of sides in a polygon
int numSides;
//Vertices[] is the array of vertices, listed in counter-clockwise sense
Point[] Vertices;
public Polygon(Point[] Vertices){
//THIS IS WHERE I NEED THE HELP, DONT KNOW WHAT TO PUT IN HERE
}
public Point getPosition(){
return this.Vertices[0];
}
}
Thank you in advanced.
Sorry for the lack of information. Yes this is for a class. I can see how an ArrayList would probably be better. The program its self has an interface, Shape, which gets implemented by a class Point and a class Polygon, which them has a class that extends that, rectangle. The idea is to put the number of vertices into an array and return the value at Vertices[0] as the position of the polygon. The rest of this class looks like this:
public abstract class Polygon implements Shape {
//numSides is the number of sides in a polygon
int numSides;
Point[] Vertices;
public Polygon(Point[] Vertices){
//your code
}
public Point getPosition(){
return this.Vertices[0];
}
}
Not sure if you need to see the rest of the program. thank you again.