/
Pavel23
/
15
Обзор
Документация
Войти
/
Pavel23
/
15
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Address.java
22 строки
500 B
Pavel23
upload files
22 ноя 2025, 14:51
22 ноя 2025, 14:51
76bc3f9
Код
Авторство
О чём код?
import java.util.Objects; public class Address { protected String country; protected String city; public Address(String country, String city) { this.country = country; this.city = city; } @Override public int hashCode() { return Objects.hash(country,city); } @Override public boolean equals(Object obj) { Address o = (Address) obj; return country.equals(o.country) && city.equals(o.city); } }