Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tasks 1-4 #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

PodoltsevaOlga
Copy link

No description provided.

@@ -16,7 +18,12 @@
* @param value - объект, привязанный к вершине
*/
public BeanVertex addVertex(Bean value) {
return null;
if (value == null) {
throw new NullPointerException("null value");
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Мы не бросаем NullPointerException руками, говорили об этом на лекции про исключения. Это ошибка. Вы может бросить IllegalArgumentException, если хотите валидировать входящие параметры

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Хорошо. Это я исправлю, мой косяк. Просто если бы лекции не пересекались с основной учебой и собраниями команды (опять же по основной учебе), я бы знала об этом. Это просто по привычке.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Мы говорили, что NPE - это в 99% случаев ошибка разработчика, аналог segfault в C. Если вылетает NPE - то значит мы где-то недоглядели. Поэтому избегаем использовать NPE в таком виде, как у вас. Иначе будет сложно отличить, руками это бросили или же действительно имеет место ошибка.

@arhangeldim
Copy link
Owner

Сложно оценить. Крупной ошибкой является throw NPE (NullPointerException) - об этом говорили на лекции. Также в случае cyclic reference непрозрачно сигнализируется эта ситуация. В остально код выглядит неплохо. Смущает ситуация с кусочком кода про выставление значений поля, но я думаю, главное, что Вы разобрались, как это работает. 14/18

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants