What are static factory methods?

前端 未结 14 673
粉色の甜心
粉色の甜心 2020-11-22 06:08

What\'s a \"static factory\" method?

14条回答
  •  有刺的猬
    2020-11-22 06:28

    static

    A member declared with the keyword 'static'.

    factory methods

    Methods that create and return new objects.

    in Java

    The programming language is relevant to the meaning of 'static' but not to the definition of 'factory'.

提交回复
热议问题