0
Fixed

Ошибка в паттерне посетитель

Alma Zhan 6 years ago updated by anonymous 6 years ago 1

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)

Answer
Fixed

Это псевдокод, данным словом я обозначал что у сущности есть продолжение (аля this is)