digital-garden/notes/Собеседования/Задачи/Задача 13.md
2024-06-13 21:01:37 +03:00

31 lines
677 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
parents:
- "[[Вопросы для собеседование Java]]"
---
```java
public class Main {
public static void main(String[] args) {
final Map<User, List<User>> friends = new HashMap<>();
}
@Getter
@Setter
@EqualsAndHashCode
private static class User {
@EqualsAndHashCode.Include
private String login;
@EqualsAndHashCode.Include
private String email;
}
}
```
%%
Так делать не стоит, потому что ключ в данном случае мы можем изменить, таким образом мы потеряем связь со значениями.
%%