0
Исправлено

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

Alma Zhan il y a 6 ans mis à jour par anonymous il y a 6 ans 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 кажется лишним. Что оно означает?

Solution

Solution
Исправлено

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

Solution
Исправлено

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