What does a constructor return?

后端 未结 6 502
礼貌的吻别
礼貌的吻别 2020-12-14 23:37

My question is what does a constructor return? This question is not quite different from \"What is the return type of a constructor?\" I have read somewhere that a construct

6条回答
  •  暖寄归人
    2020-12-15 00:34

    Constructors do not return anything.
    Constructors are called implicitly while object creation to initialize the object being created.

提交回复
热议问题