I just wanna know what does Object S[] mean in this code? This is a snippet of a source code for Stack in array. Is this a data type? What does it return? and what type of data should be entered?
public class ArrayStack implements Stack {
public static final int CAPACITY = 1000;
public int capacity;
Object S[];