What are the different types of constructors in Kotlin?

devquora
devquora

Posted On: Feb 22, 2018

 

There are two types of constructors in Kotlin:
  • Primary constructor: It is a section of the Class header and is declared after the class name.
  • Secondary constructor: This constructor is declared inside the body.

Note: There can be more secondary constructors for a class.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Kotlin Interview Questions

    Which type of Programming does Kotlin support?

    Which type of Programming does Kotlin support?..