0
Fixed
Ошибка в паттерне посетитель
https://refactoring.guru/ru/design-patterns/visitor
// Client code
foreach (Node node in graph)
node.accept(exportVisitor);
// City
class City is
method accept(Visitor v) is
v.doForCity(this);
// ...
// Industry
class Industry is
method accept(Visitor v) is
v.doForIndustry(this);
// ..
слово is кажется лишним. Что оно означает?
Answer
Answer
Fixed
Это псевдокод, данным словом я обозначал что у сущности есть продолжение (аля this is)
Customer support service by UserEcho
Это псевдокод, данным словом я обозначал что у сущности есть продолжение (аля this is)