Читать книгу Programming Kotlin Applications - Бретт Мак-Лахлин, Brett McLaughlin - Страница 35

LISTING 1.4: Cutting out the constructor keyword

Оглавление

class Person(firstName: String, lastName: String) { /* This class still doesn't do much! */ } fun main() { val brian = Person("Brian", "Truesby") }

Programming Kotlin Applications

Подняться наверх