Inline Functions: inline, crossinline, and noinline

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024

Комментарии • 31

  • @erfansn869
    @erfansn869 4 месяца назад +35

    Best kotlin channel

  • @gekylafas
    @gekylafas 4 месяца назад +7

    Great examples! The table at the end summed everything up very nicely!

  • @Tuligarnio
    @Tuligarnio 4 месяца назад +8

    The best explanation I've seen on this topic!

  • @emiliomarkgraf7169
    @emiliomarkgraf7169 4 месяца назад +2

    Hello 🙂
    I really like your videos - they are informative and touch subjects I do not know much about, and you have a pleasant voice to listen to. Thank you for taking your time to educate people!

    • @typealias
      @typealias  4 месяца назад

      Hey Emilio, you're most welcome! And thank you - I truly enjoy creating these videos!

  • @abhijeetmutum3956
    @abhijeetmutum3956 4 месяца назад +2

    I'd love to see you do a video on diving deeper into Kotlin coroutines and exploring various advanced concepts - your teaching style would surely make it easy to understand.Your Kotlin tutorials are incredibly clear and helpful, making learning the language a breeze!

    • @typealias
      @typealias  4 месяца назад +4

      Thanks, Abhijeet! Great suggestion! I'm currently working on the final chapter of the Illustrated Guide, which covers the essentials of coroutines. As I'm doing that, I expect I'll create some videos that either tie in with it, or which cover related concepts that go beyond the essentials. 👍

  • @amitbhandari1176
    @amitbhandari1176 4 месяца назад +1

    Thanks, video is really helpful and good examples along the way to demonstrate actual usage!

  • @alanmeanam
    @alanmeanam 3 месяца назад +1

    This guy is amazing, explains everything so clearly

    • @typealias
      @typealias  3 месяца назад

      Thanks so much, Alan!

  • @osisuper98
    @osisuper98 3 месяца назад +1

    Thank God I discovered this channel. You rock!

    • @typealias
      @typealias  3 месяца назад

      Hey, thanks so much! I'm glad you're enjoying it!

  • @Maxwork82
    @Maxwork82 4 месяца назад

    Finally, it was a great explanation. Majority of sophisticated computer science topics are essential once somebody explains it to you.

  • @Amejonah
    @Amejonah 4 месяца назад

    1:26 As of 1.5 Kotlin has the option to generate lambdas using invokedynamic instead of classes, in 2.0 this behavior will be activated per default.
    You forgot to mention that inline functions also allow reified generics!
    But overall, very nice explanation. I will reference your video to others in need. Keep it up 🫡

    • @typealias
      @typealias  4 месяца назад

      Thanks for mentioning this! I hadn't read the 2.0-RC1 release notes yet, so I'm glad to hear that this will become the default behavior in 2.0!
      Also - the omission of reified type parameters was quite intentional - that's a big enough topic for its own video, so we'll tackle that another time. 🙂
      Thanks again!

  • @HarrisAli-rx6uy
    @HarrisAli-rx6uy 4 месяца назад

    Perfect explanation, thank you :)

    • @typealias
      @typealias  4 месяца назад

      You're most welcome!

  • @gamarmustafa
    @gamarmustafa 2 месяца назад

    great video as always!

  • @gb_kash
    @gb_kash 2 месяца назад

    So beautifully explained. Thanks a lot

  • @martinuslukas448
    @martinuslukas448 4 месяца назад

    Hello, I just bought your book, I think your explanation is very easy to understand.

    • @typealias
      @typealias  4 месяца назад +2

      Hey Martinus, thank you so much! The funds from each purchase of the book have gone back into tooling and services that help me to create more articles and videos - so I really appreciate it!

  • @Guilo583
    @Guilo583 4 месяца назад +1

    Thanks for the great explanation. could you please also explained reified key word

    • @typealias
      @typealias  4 месяца назад +3

      Great suggestion! I'll add that to the list of possible future topics. 👍

  • @eslambasher5720
    @eslambasher5720 2 месяца назад

    thanks for explain every things easily but I have a question where function save came form ?

    • @typealias
      @typealias  2 месяца назад

      Hey Eslam - The save() function was hiding inside the code folding (if you look at the numbers on the left-hand side, you'll see they go from 1 to 9, because I folded lines 1-8). The implementation of the save() function was irrelevant to the main focus of the video, but in case you're wondering, it just does Thread.sleep() for a random amount of time between 0-500ms.

    • @eslambasher5720
      @eslambasher5720 2 месяца назад

      @@typealias thanks 🙏

  • @faridguliyev8417
    @faridguliyev8417 4 месяца назад

    Finally, i understood this concept, thank you so much!

  • @bluediamond1965
    @bluediamond1965 10 дней назад

    I think default inline is just a suggestion to the compiler and cannot be enforced

  • @eslambasher5720
    @eslambasher5720 2 месяца назад

    I tried to use noinline parameter but when I saw the bytecode I found both of parameters inline and noinline both of them dont' make a new object why if there is one of them is noinline

    • @typealias
      @typealias  2 месяца назад

      When you compile an inline function, you'll notice it show up in the bytecode (or in Java that you got when decompiling that bytecode) for interoperability with Java. If you call an inline function from Java, it'll call this function - that call won't be inlined, but it'll still work. That function is not called from your Kotlin code, though - it's only there for Java interop.
      For the Kotlin side, you'll see different bytecode depending on your version of Kotlin -
      - In Kotlin 1.x, you'll see something like (Function0)null.INSTANCE to represent the noinline argument.
      - In Kotlin 2.x, your noinline argument is generated as a static function (e.g., private static final Unit main$lambda$2()), and your call site will reference that.

    • @eslambasher5720
      @eslambasher5720 2 месяца назад

      Thanks that's great