I have run into the class and respective constructor shown bellow:
public class Something{
public static final int aConstant = 0;
public static final int bConstant = 1;
private final AnotherThing[] otherObjects
private final float usefulNumber;
public Something(float usefulNumber, AnotherThing ... otherObjects){
this.usefulNumber = usefulNumber;
this.otherObjects = otherObjects;
}
//various methods
}
When I put this into Eclipse, no errors are shown. I assume the "..." is some sort of operator, but I am not sure. Can anyone clarify if this is anything, or just something to show that time was saved? (time saving doesn't make any sense because the class only has two attributes)