Real world examples of Factory Method pattern

后端 未结 6 2026
醉话见心
醉话见心 2020-12-13 02:03

I just read Factory Method. I understand that it provides a way to delegate the instantiation to sub-classes. But I couldn\'t understand the possible uses in a real-world sc

6条回答
  •  星月不相逢
    2020-12-13 02:58

    From API I'm developing right now:

    WebGalleryFactory factory = WebGalleryFactory.newInstance (WebGalleryType.PICASA);
    WebAlbum album = factory.createAlbum (title, description);
    

    In this example I use Factory Method to create Abstract Factory of a certain type (PICASA in the example).

    These two patterns are often used together.

提交回复
热议问题