instance factory methods Vs Static factory methods

前端 未结 5 842
难免孤独
难免孤独 2020-12-23 11:35

Can\'t all factory methods be static ? Does something that produces a product need state ? When is it appropriate to go for a instance factory or static factory method ? Ca

5条回答
  •  感情败类
    2020-12-23 12:05

    If instances are needed before, then you can use static factory, otherwise instantiate the factory itself and pass it to your code.

提交回复
热议问题