Constructor is static or non static

后端 未结 11 1559
青春惊慌失措
青春惊慌失措 2021-02-04 12:33

As per standard book constructor is a special type of function which is used to initialize objects.As constructor is defined as a function and inside class function can have on

11条回答
  •  北恋
    北恋 (楼主)
    2021-02-04 13:06

    Neither.

    Methods can be divided into 2 types: static/non-static methods, aka class/instance methods.

    But constructors are not methods.

提交回复
热议问题