I want to create a Stack in Java, but fix the size. For example, create a new Stack, set the size to 10, then as I push items to the stack it fills up and when it fills up to ten, the last item in the stack is pushed off (removed). I want to use Stack because it uses LIFO and fits my needs very well.
But the setSize() method that Stack inherits from Vector doesn't seem to actually limit the size of the Stack. I think I am missing something about how Stacks work, or maybe Stacks weren't meant to be constrained so it is impossible. Please educate me!
You can subclass
Stack
and override the appropriate method(s) to implement this custom behavior. And make sure to give it a clear name (e.g.FixedStack
).You can use LinkedHashMap and override its removeEldestEntry method:
And to test it:
You just have to decide what you want to use as the key, I used a simple counter in the example.
A
LinkedBlockingDeque
is one simple option. Use theLinkedBlockingQueue(int)
constructor where the parameter is the your stack limit.As you observed,
Stack
andVector
model unbounded sequences. ThesetSize()
method truncates the stack / vector. It doesn't stop the data structure from growing beyond that size.You can create a very simple stack like this:
A pure stack would not limit its size, as for many of the problems stacks solve you don't know how many elements you are going to need.
You could write a custom stack that implements the needs you described. However, you will break LIFO if you do. If the max size is met, and you push something new on the stack, you just lose the previously added item. So if you then start popping items off your stack, you'll miss some.
What you need is a double-ended queue like
LinkedList
. This wouldn't automatically drop elements at the front though, but by subclassing/decorating it you could add that functionality.