未タイトル

するとあら不思議、デコレーターパターンに大変身

するとあら不思議、デコレーターパターンに大変身

  • タグ:
  • タグはありません
public class Main {


	public static void main(String[] args) {
		Foo foo = new FooLogger(new FooImpl());
		foo.foo();
		foo.bar();
		foo.baz();
	}

}