I have a Queue<T> object that I have initialised to a capacity of 2, but obviously that is just the capacity and it keeps expanding as I add items. Is there already an object that automatically dequeues an item when the limit is reached, or is the best solution to create my own inherited class?
|
feedback
|
|
I would recommend that you pull up the C5 Library. Unlike SCG (System.Collections.Generic), C5 is programmed to interface and designed to be subclassed. Most public methods are virtual and none of the classes are sealed. This way, you won't have to use that icky "new" keyword which wouldn't trigger if your
I think that this code should do exactly what you were looking for. | |||
|
feedback
|
|
I've knocked up a basic version of what I'm looking for, it's not perfect but it'll do the job until something better comes along. | |||||||||||
feedback
|
|
You should create your own class, a ringbuffer would probably fit your needs. The data structures in .NET that allows you to specify capacity, except for array, uses this to build the internal data structure used to hold the internal data. For instance, for a list, capacity is used to size an internal array. When you start adding elements to the list, it'll start filling this array from index 0 and up, and when it reaches your capacity, it increases the capacity to a new higher capacity, and continues filling it up. | |||
|
feedback
|
|
Why wouldn't you just use an array with a size of 2? A Queue is supped to be able to dynamically grow and shrink. Or create a wrapper class around an instance of Queue instance and each time one enqueues a object, check the size of the queue. If larger than 2, dequeue the first item. | ||||
|
feedback
|
|
Well I hope this class will helps You: NOTE: You can't remove items randomly. I set the method Remove(T item) to return false. if You want You can modify to remove items randomly
| ||||
feedback
|
|
You could also make the "circular" option a decorator by inheriting ICollection.That way it ll enable you to use any kind of collection LIFO/FIFO suiting your needs. ex: //Quickly typed code please don't judge xD
Please leave me comments. This is my first post and I would like to be better. | ||||
|
feedback
|
|
If it's of any use to anyone, I made a
It removes the oldest item (bottom of stack) when it gets too big. (This question was the top Google result for "C# limit stack size") | |||
|
feedback
|