constructor methods in interfaces

后端 未结 6 2161
闹比i
闹比i 2021-02-18 21:03

Are constructor methods in interfaces bad?

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-18 21:22

    Although interfaces can't have constructors in most languages, the Factory pattern provides a contract for constructing objects, similar to an interface. Take a look at that.

提交回复
热议问题