Romain and Chet presentations are the best, always fun and informative
@bartekpa5 жыл бұрын
These two guys always give the best talks :D
@dimanemets67535 жыл бұрын
5 years Android dev, learned at least 5 new things !
@bug_muzzy5 жыл бұрын
Awesome duo. Always fun, always concise and informative. Love presentations by these guys.
@Condog642 жыл бұрын
This video is incredibly insightful. I will never forget about Int? needing to allocate every time a new value is assigned. On the other hand, this video also feels like many passive aggressive remarks from Google to Jet Brains around the Kotlin compiler's inconsistencies and oddities. The lambda example actually seems pretty scary.
@porus105 жыл бұрын
Such a piece of crucial information. It's so hard to believe the kind of mess Kotlin creates underneath for providing those extra features to the end developer. Every developer should beforehand dig in a little beneath this syntactical sugar provided by modern languages. And yes, Chet and Romain, always a delight to watch.
@SaravanaThiyagarajs5 жыл бұрын
I am hoping someone from Jetbrains will comment on what's happening at 22:05
@no_fb5 жыл бұрын
The guy said it himself, it's still experimental. Obviously the code doesn't yet check for wrap-around values and so on. It's just a very bad presentation overall.
@shyiamnot2125 жыл бұрын
I don't understand the part of interlude at 10:41,It will help a lot if anyone could explain it for me.Event a little hint would be help.
@НектоЛохматый5 жыл бұрын
In Kotlin, we do 10001 comparasions of an integer to a variable of type Int?. As it's been told, Kotlin's Int? is java.lang.Integer under the hood. So, on each iteration we compare a primitive type int to an object of type Integer, and the only way to do this is to wrap the int into a corresponding Integer, like: Integer iAsInteger = new Integer(i); So, we expect 10001 object allocations. But Kotlin optimizes this a little bit by caching instances Integer(0), Integer(1), ..., Integer(127). Unless i gets greater than 127, Kotlin uses the cached java.lang.Integer's instead of allocating new ones.
@AkshayDave5 жыл бұрын
Did javap -c "MyClass" work for anyone? When I go to AS terminal, and go to specific folder, and type that command it said class not found
@comradepeter874 жыл бұрын
.. you changed the MyClass to the name of your compiled class, right?
@AkshayDave4 жыл бұрын
@@comradepeter87I would assumed so ;) It has been almost a year since this one. I will give it another go. "MyClass" was just a stand in.
@edgeeffect2 жыл бұрын
This may well be a very good talk, but Google's ridiculous "rockstar" staging is very distracting.
@shubham09525 жыл бұрын
22:05 nice roast
@stayathomedev38395 жыл бұрын
I thought the other speaker's name was Romanian Guy
@AshutoshTiwari45 жыл бұрын
Thumbs Up (Y)
@donwald34365 ай бұрын
If he steals your slide just steal his lol.
@no_fb5 жыл бұрын
Google guys, if you stumble on a few peculiarities in a language under development, talk directly with your partner instead of showcasing them in public and on KZbin. It's lame and unprofessional. After all, Kotlin is your way out of this Dalvik mess of yours.
@jorgesegundorojas61195 жыл бұрын
I'm so angry, why should I keep developing Android applications if at any time and without notice YOU block manufacturers?... even more, why users (and clients) should keep buying Android devices if at any time YOU can make'em "WASTE" their money with this S T U P I D deciscions?.
@no_fb5 жыл бұрын
wrong forum, mate
@hdkloh5 жыл бұрын
Good bye Kotlin... Welcome Flutter...
@rgenericson53615 жыл бұрын
Dream on!
@PabloMartinezPiles5 жыл бұрын
hdk loh 😂😂 you won’t see that
@aitortilla51285 жыл бұрын
Not interested at all in Kotlin. I'll stick to Java.