토비의 봄 TV 1회 Double dispatch example 토비님 방송(토비의 봄 1회 )에서 나왔던 double dispatch 예제를 정리해봅니다. Visitor 패턴도 같이 포함되어 있습니다. public class Dispatch {// 비지터 패턴의 Element 인터페이스interface Post {void postOn(SNS sns);// 비지터 패턴의 accept(visitor)} static class Text implements Post {public void postOn(SNS sns) {sns.post(this);}} static class Picture implements Post {public void postOn(SNS sns) {sns.post(this);}} // 비지..