KotlinConf 2017 - Two Stones, One Bird: Implementation Tradeoffs by Christina Lee

Поділитися
Вставка
  • Опубліковано 12 січ 2025

КОМЕНТАРІ • 6

  • @peterwestlin8052
    @peterwestlin8052 6 років тому +1

    Awesome talk, thank you Crihistina!

  • @chrisvasqm
    @chrisvasqm 6 років тому +1

    Awesome talk by Christina!

  • @igorg.8624
    @igorg.8624 6 років тому

    Could you illustrate some of the different ways Enums should be expressed in Kotlin?

  • @kamalabuhenamostafa
    @kamalabuhenamostafa 7 років тому +1

    Nice..................

  • @rameesthattarath2278
    @rameesthattarath2278 6 років тому

    It would be better if language tends to be opinianated, rather than to expose many ways to accomplish same tasks, right?
    Good talk , I love kotlin

    • @sonusanjeev9009
      @sonusanjeev9009 3 роки тому

      It seems each different approach was also providing something extra that the other one was not. Take for instance the "with" and "run" options, were "run" was also providing an option to null check which you cannot do on "with". But if you don't need null check or initialization then "with" seems more readable.