patterns/adapter.dart

33 lines
777 B
Dart
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.

// структурный паттерн проектирования, который
// позволяет объектам с несовместимыми интерфейсами работать вместе
const adapteeMessage = 'Вызов адаптирующегося метода';
class Adaptee {
String method() {
print('Вызов адаптирующегося метода');
return adapteeMessage;
}
}
abstract class Target {
String call();
}
class Adapter implements Target {
String call() {
var adaptee = Adaptee();
print('Вызов адаптирующегося метода');
return adaptee.method();
}
}
void main() {
var adapter = Adapter();
var result = adapter.call();
print(result == adapteeMessage);
}