디자인 패턴
-
[DP] Visitor Pattern디자인 패턴 2024. 11. 22. 10:44
https://shan0325.tistory.com/41 [Design Pattern] Visitor(방문자) 패턴이란?행위 패턴(Behavioral Pattern) 방문자 패턴(Visitor pattern)은 객체 지향 프로그래밍에서 사용되는 디자인 패턴 중 하나로, 객체의 구조와 그 구조에서 수행되는 작업을 분리하여 구현하는 패턴입니다.shan0325.tistory.com https://brownbears.tistory.com/575 [Design Pattern] 방문자 패턴 (Visitor Pattern)방문자 패턴은 방문자와 방문 공간을 분리하여 방문 공간이 방문자를 맞이할 때, 이후에 대한 행동을 방문자에게 위임하는 패턴입니다. 비슷한 객체에서 어떤 동작을 해야할 때 방문자 패턴을brownbe..