Готовая 7 лаба

This commit is contained in:
platoff aeeee 2023-12-24 22:57:08 +04:00
parent 4b3d7d9694
commit 5c23c80066
2 changed files with 14 additions and 11 deletions

View File

@ -55,21 +55,23 @@ namespace Tank
return;
}
_logger.LogInformation("Начало попытки добавления объекта");
if ((obj + tank) != false)
try
{
MessageBox.Show("Объект добавлен");
pictureBoxCollection.Image = obj.ShowTanks();
_logger.LogInformation($"Добавлен объект {obj}");
if ((obj + tank) != false)
{
MessageBox.Show("Объект добавлен");
pictureBoxCollection.Image = obj.ShowTanks();
_logger.LogInformation($"Добавлен объект {obj}");
}
}
else
catch (TankStorageOverflowException ex)
{
TankStorageOverflowException ex = new TankStorageOverflowException();
MessageBox.Show(ex.Message);
MessageBox.Show("Не удалось добавить объект");
_logger.LogWarning($"{ex.Message} в наборе {listBoxStorages.SelectedItem.ToString()}");
_logger.LogWarning($"{ex.Message} ");
}
}
private void ButtonAddArmoredCar_Click(object sender, EventArgs e)
{

View File

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tank.Exceptions;
namespace Tank.Generics
{
@ -29,10 +30,10 @@ namespace Tank.Generics
public bool Insert(T tank, int position)
{
if (position < 0 || position > _maxCount)
return false;
if (position < 0 || position >= _maxCount)
throw new TankNotFoundException(position);
if (Count >= _maxCount)
return false;
throw new TankStorageOverflowException(_maxCount);
_places.Insert(0, tank);
return true;
}