The mystery of primary constructor in Kotlin. Please explain that code. | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 7

The mystery of primary constructor in Kotlin. Please explain that code.

Can someone explain me this code please? https://code.sololearn.com/coeTwn3OWsl0/?ref=app

22nd Jun 2018, 7:12 AM
Oma Falk
Oma Falk - avatar
3 ответов
+ 14
Oma, in your case, primary constructor parameter "count" need to be marked as 'val' or 'var' : class mystery(var count: Int = 0) // in main function : val myobj = mystery() println(myobj.count ) When you write val/var within the constructor, it declares a property inside the class. When you do not write it, it is simply a parameter passed to the primary constructor, where you can access the parameters within the init block or use it to initialize other properties (for example "num" in class "mystery2" in your code)
22nd Jun 2018, 8:02 AM
LukArToDo
LukArToDo - avatar
+ 12
Oma Falk That's right 😊
22nd Jun 2018, 8:57 AM
LukArToDo
LukArToDo - avatar
+ 7
LukArToDo ok..., but what is the mystery constructor worth for? ...ahh one thought: it can influent more than one property. so a class receipt can receive a parameter for number of persons and all ingredient properties can be initialzed with the right amount(weight) Am I right?
22nd Jun 2018, 8:39 AM
Oma Falk
Oma Falk - avatar