/
dm_kv
/
hw1
Обзор
Документация
Войти
/
dm_kv
/
hw1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Address.java
22 строки
478 B
dm_kv
upload files
26 ноя 2025, 12:28
26 ноя 2025, 12:28
c2f6dff
Код
Авторство
О чём код?
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); } }