/
ket12werw
/
Zadanierep
Обзор
Документация
Войти
/
ket12werw
/
Zadanierep
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Notification.java
42 строки
1 KB
ket12werw
Create: Notification.java
10 июл 2026, 16:35
Верифицирован
10 июл 2026, 16:35
3fb25b6
Код
Авторство
О чём код?
public abstract class Notification { public abstract void send (String message); } class EmailNotification extends Notification { @Override public void send(String message) { System.out.println("Еmail:" + message); } } class SmsNotification extends Notification { @Override public void send(String message) { System.out.println("SMS:" + message); } } class PushNotification extends Notification { public void send(String message) { System.out.println("Push:" + message); } } class Solution { static void main() { String text = "Ваш заказ готов"; Notification[] notifications = new Notification[3]; notifications[0] = new EmailNotification(); notifications[1] = new SmsNotification(); notifications[2] = new PushNotification(); for (Notification notification : notifications) { notification.send(text); } } }