namespace ProjectAirplaneWithRadar.CollectionGenericObjects
{
///
/// Параметризованный набор объектов
///
/// Параметр: ограничение - ссылочный тип
public class ListGenericObjects : ICollectionGenericObjects
where T : class
{
///
/// Список объектов, которые храним
///
private readonly List _collection;
///
/// Максимально допустимое число объектов в списке
///
private int _maxCount;
public int Count => _collection.Count;
public int MaxCount {
set
{
if (value > 0)
{
_maxCount = value;
}
}
get
{
return _maxCount;
}
}
public CollectionType GetCollectionType => CollectionType.List;
///
/// Конструктор
///
public ListGenericObjects()
{
_collection = new();
}
public T? Get(int position)
{
if (position >= Count || position < 0)
return null;
return _collection[position];
}
public int Insert(T obj)
{
if (Count + 1 > _maxCount)
return -1;
_collection.Add(obj);
return Count;
}
public int Insert(T obj, int position)
{
if (Count + 1 > _maxCount)
return -1;
if (position < 0 || position > Count)
return -1;
_collection.Insert(position, obj);
return 1;
}
public T? Remove(int position)
{
if (position < 0 || position > Count)
return null;
T? temp = _collection[position];
_collection.RemoveAt(position);
return temp;
}
public IEnumerable GetItems()
{
for (int i = 0; i < _collection.Count; ++i)
{
yield return _collection[i];
}
}
}
}