13.4 MultiThreading using Lambda Expression

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

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

  • @karunachouksey480
    @karunachouksey480 6 лет назад +15

    Was searching this concept all over but found her. Perfect explanation... Understood the concept in one go.
    You are a very good Teacher.

  • @alifadhil3243
    @alifadhil3243 5 лет назад +5

    YOU are the GREATEST teacher I have ever seen in RUclips world...

  • @georgi_verstapen33
    @georgi_verstapen33 3 года назад

    i learned more in 5 minutes than in plenty of hours in university, Telusko the best

  • @venkateshkoka8508
    @venkateshkoka8508 6 лет назад +4

    great step by step explanation and optimization, without confusing us.

  • @madeupstory
    @madeupstory 7 лет назад +8

    This is pretty good. It was lovely watching you optimize the code.

    • @msharankumarreddy5455
      @msharankumarreddy5455 3 года назад

      after all finally optimize to one line where calling 1 will give you output

  • @achyuthsai6339
    @achyuthsai6339 4 года назад

    the most brilliant and awesome teacher in youtube you are a legend sir.

  • @amranhossain7099
    @amranhossain7099 6 лет назад +1

    you'r the best. I like the way you teach.................................................................................................................................................

  • @sharjeelahmadsiddiqui2649
    @sharjeelahmadsiddiqui2649 5 лет назад +1

    Sir your way of teaching is awesome

  • @shravanipadma9988
    @shravanipadma9988 4 года назад

    Hi Naveen reddy I like your way of explanation thank you so much for doing these videos

  • @ЏонМастерман
    @ЏонМастерман 4 года назад +1

    Awesome as always Telusko, thanks so much.

  • @rajasaha1997
    @rajasaha1997 6 лет назад

    There are few people know java as much as you sir.

  • @MrPrakash57
    @MrPrakash57 6 лет назад

    Good step by step explanation navin, got to know actual purpose of lambda expression . Thanks a lot :)

  • @abulehsan7863
    @abulehsan7863 2 года назад

    Award Winning Tutorial.

  • @GayathriReddyVlogs
    @GayathriReddyVlogs Год назад

    Great content and awesome tutorials.

  • @answermy2107
    @answermy2107 3 года назад

    I am also a bit confused at the end but understood a bit late, at the end the code should be taken as runnable object passed as argument then it becomes clear to understand

  • @msharankumarreddy5455
    @msharankumarreddy5455 3 года назад

    its like travelling in the fastest train picking up all the concepts😁😁

  • @mohanrammanikandan7939
    @mohanrammanikandan7939 5 лет назад +3

    Thank you, Navin.
    I have a query that how system allows to instantiate an object for an interface(Runnable interface).

    • @tuweiIsaac
      @tuweiIsaac 5 лет назад

      i was about to type the same..kindly Navin explain

    • @shivamdave6252
      @shivamdave6252 4 года назад

      Because it is referencing other class and not initializing the interface itself.

  • @hackyfunky2875
    @hackyfunky2875 Год назад +1

    we have reduced 3 line's of code , thats awesome 😂😂😂😂😂😂😂😂😂😂👌👌👌👌👌👌👌👌

  • @pavelvorontsov7020
    @pavelvorontsov7020 3 года назад

    Very informational video!

  • @begemotokamaz955
    @begemotokamaz955 4 года назад

    Great explenation!!! it so easy! Thank you!

  • @clashlogs1854
    @clashlogs1854 2 года назад

    Man! You're so so Good!!!!!

  • @iccherherbarium9688
    @iccherherbarium9688 3 года назад

    So when we pass all along with lambda exp at last in thread object initialization then its not remain as a runnable target right?

  • @PaintingWithAnika
    @PaintingWithAnika 4 года назад

    You are the best. Thanks a lot.

  • @hsar25
    @hsar25 4 года назад

    Thank you sir, i have a one question .sir you have handled sleep Exception in main method,so will it execute for those 2 classes?

  • @md.imanali9998
    @md.imanali9998 4 года назад

    This is great. Thanks Sir

  • @bgpattar
    @bgpattar 7 лет назад +2

    where did anonymous class implements Runnable interface here? because Thread accepts only object of class that implements Runnable.

    • @PramodSubramanyam10
      @PramodSubramanyam10 7 лет назад

      Using Lambda there is no need to type runnable interface explicitly.Everything is done internally i think

    • @abhiganta
      @abhiganta 7 лет назад

      I too have the same doubt... Can someone explain?

    • @satyaprakashtiwari477
      @satyaprakashtiwari477 6 лет назад

      That's why Functional Interface restricts to have only one abstract method.
      So that using lambda it will do what we were doing with anonymous.

    • @touheedkhan9807
      @touheedkhan9807 5 лет назад

      What kind of Anonymous Class u r creating? It’s Runnable Only. And lamba experssion work for only functional interface that means 1 abstract method.

  • @shubhamkumar9832
    @shubhamkumar9832 6 лет назад

    Lambda Expression implementation is showing error in eclipse ? Why

  • @samippandey3563
    @samippandey3563 7 лет назад

    Where is the run() method implemented here?

  • @bittooaggarwal5776
    @bittooaggarwal5776 3 года назад

    is the last one anonymous object?

  • @ShivamSharma-lc3po
    @ShivamSharma-lc3po 6 лет назад +1

    nyc explanation

  • @TheSubhadipMondal
    @TheSubhadipMondal 3 года назад

    Best video

  • @vivekmalhan7083
    @vivekmalhan7083 5 лет назад

    Great thanks sir

  • @mohammedshafiuddin8956
    @mohammedshafiuddin8956 4 года назад

    Hi Navin, thank you for your excellent educational presentation. Can you please make a video on how to find the k closest path in java. For example, if the given 2d array has the path in x, y coordination like this --> [[-16, 5], [-1, 2], [4, 3], [10, -2], [0, 3], [-5, -9]] and k = 3, that means the java program should find the 3 closest path nearest to you, assuming that your location
    is at [0, 0] coordination. The output for the 3 closest paths should be like this --> [[-1, 2], [0, 3], [4, 3]]. These are the 3 closest paths from your points of coordination [0, 0]. The formula to determine the closest paths is ((x_1^2 - x_2^2) + (y_1^2 - y_2^2)).

  • @rajshreegavel5966
    @rajshreegavel5966 5 лет назад

    it is more like javascript syntax!

  • @prat-man
    @prat-man 4 года назад

    lambda expressions are confusing

  • @vishhhaal
    @vishhhaal 5 лет назад

    Slow down buddy! You are going pretty fast!!!!

  • @digitalnomadg
    @digitalnomadg 6 лет назад +1

    😮😮😯 r u kidding me .. wow

  • @chrischauhan1649
    @chrischauhan1649 5 лет назад

    I fill like pro.

  • @raghavchadha9133
    @raghavchadha9133 8 лет назад

    awsm