Great examples! The table at the end summed everything up very nicely!
@abhijeetmutum39568 ай бұрын
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!
@typealias8 ай бұрын
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. 👍
@osisuper986 ай бұрын
Thank God I discovered this channel. You rock!
@typealias6 ай бұрын
Hey, thanks so much! I'm glad you're enjoying it!
@emiliomarkgraf71698 ай бұрын
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!
@typealias8 ай бұрын
Hey Emilio, you're most welcome! And thank you - I truly enjoy creating these videos!
@alanmeanam6 ай бұрын
This guy is amazing, explains everything so clearly
@typealias6 ай бұрын
Thanks so much, Alan!
@amitbhandari11768 ай бұрын
Thanks, video is really helpful and good examples along the way to demonstrate actual usage!
@Maxwork828 ай бұрын
Finally, it was a great explanation. Majority of sophisticated computer science topics are essential once somebody explains it to you.
@hameedchishti31143 ай бұрын
best kotlin channel. Any plans to add inline, crossinline, noinline, reified material to your book?
@typealias3 ай бұрын
Hey, Hameed! Thanks so much! For the book, the objective was to get the reader to the point where he or she could be productive with Kotlin day-to-day, so I've intentionally left out some of the things that are mainly concerned with optimization (value classes are another feature that I love, but just didn't quite fit the objective, so I left them out). So, they won't be included in the Illustrated Guide - however, I'll still be writing (and drawing!) about Kotlin features as standalone articles on the website, and if there's enough interest in that topic, I'd be happy to write that one!
@gb_kash6 ай бұрын
So beautifully explained. Thanks a lot
@martinuslukas4488 ай бұрын
Hello, I just bought your book, I think your explanation is very easy to understand.
@typealias8 ай бұрын
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!
@Guilo5838 ай бұрын
Thanks for the great explanation. could you please also explained reified key word
@typealias8 ай бұрын
Great suggestion! I'll add that to the list of possible future topics. 👍
@Amejonah8 ай бұрын
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 🫡
@typealias8 ай бұрын
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-rx6uy7 ай бұрын
Perfect explanation, thank you :)
@typealias7 ай бұрын
You're most welcome!
@eslambasher57205 ай бұрын
thanks for explain every things easily but I have a question where function save came form ?
@typealias5 ай бұрын
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.
@eslambasher57205 ай бұрын
@@typealias thanks 🙏
@cya3mdirl158Ай бұрын
However, it’s still code interpreted by the JVM. What does this code look like after JIT optimization?
@gamarmustafa6 ай бұрын
great video as always!
@flyhighflyfastАй бұрын
best explanation
@eslambasher57205 ай бұрын
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
@typealias5 ай бұрын
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.
@eslambasher57205 ай бұрын
Thanks that's great
@bluediamond19653 ай бұрын
I think default inline is just a suggestion to the compiler and cannot be enforced
@faridguliyev84178 ай бұрын
Finally, i understood this concept, thank you so much!