Stream API in Java | Complete course | Explained in Hindi | Interview question explained on Stream

Поділитися
Вставка
  • Опубліковано 2 жов 2024
  • Java Stream API with this in-depth tutorial. Learn how to leverage functional programming principles for seamless and efficient data manipulation. From basic operations to advanced techniques, this video covers it all. Whether you're a beginner or an experienced Java developer, enhance your skills and write more expressive and concise code using Java Stream API.
    My Tutorial Website: studyatnight.com
    Code used in this video are uploaded to Github: github.com/sub...
    Topics covered:
    Introduction to Java Stream API
    Intermediate & Terminal Operations
    Functional-style operations (filter, map, count, sorted, max, min, etc.)
    Comparator & Comparator using functional programming.
    Real interview questions solved using stream API
    Best practices for effective stream usage
    Dive into the world of streams and revolutionize your Java programming. Don't miss out on this essential guide to mastering the Java Stream API!

КОМЕНТАРІ • 74

  • @the_horre
    @the_horre 6 місяців тому +6

    seriously it's a excellent video sir, I watched complete video didn't skip for 10 sec also , your explained every mathod of stream in a excellent manner ❤️❤️

  • @MarjitaSaha
    @MarjitaSaha 7 місяців тому +7

    Can you please share the code links whatever is done in this video. Found this video helpful , so if you could please share stream API codes it would be much much helpful for reference in future and also for interview preparation🙏

    • @BitsAndBytes0101
      @BitsAndBytes0101  7 місяців тому +1

      Thank you for your suggestion. I 'll share all the code through my GitHub link 🔗. I am travelling right now once I am back, I will update my GitHub url in the description. Most probably it will be updated by the 1st week of March. 😊

    • @MarjitaSaha
      @MarjitaSaha 7 місяців тому +2

      Thank you so much@@BitsAndBytes0101

    • @AbheyBhatia
      @AbheyBhatia 6 місяців тому +2

      @@BitsAndBytes0101: Please provide Git link.

    • @BitsAndBytes0101
      @BitsAndBytes0101  6 місяців тому +1

      @@AbheyBhatia Please find the Git URL in this video description also mentioning here: github.com/subhash307/BitsAndBytes

  • @Sushant.Godbharle
    @Sushant.Godbharle 2 місяці тому

    Thank you so much for this video! Keep it up 👍

  • @therandomchannel02
    @therandomchannel02 7 місяців тому +7

    Precise and to-the-point video. Bohot helpful tha ye, aise hi aur bhi java topics like - Serialization, Multithreading, etc ka one shot videos banaiye. Excellent work. Subscribed!

    • @BitsAndBytes0101
      @BitsAndBytes0101  7 місяців тому +3

      Thank you for your support.❤ Stay tuned ✌️

  • @swapnilsonawane4633
    @swapnilsonawane4633 7 місяців тому +2

    Very helpful video thanks bhai❤

  • @krishnamohan6305
    @krishnamohan6305 7 місяців тому +5

    Simple, precise and clear video. well done. Thanks for your efforts.

  • @prestige2948
    @prestige2948 8 днів тому

    Thanks a lot sir for teaching in a such way that with wasting time and not consuming any time and simultanously teach large volume of topic in this short video. We are blessed that @Bit and Byte type youtube channel are really doing well work for us.

  • @abhijeetkulkarni8246
    @abhijeetkulkarni8246 3 місяці тому

    simple and very nice explained

  • @VinayKumar-gy6bx
    @VinayKumar-gy6bx 7 місяців тому +4

    Nice quality nice explaination , please continue other java topics.

    • @BitsAndBytes0101
      @BitsAndBytes0101  7 місяців тому

      Thank you for your support Vinay ♥️
      Stay Tuned.

  • @JawadKhan-v9m
    @JawadKhan-v9m 3 місяці тому +2

    sir please come with spring boot

    • @BitsAndBytes0101
      @BitsAndBytes0101  3 місяці тому +1

      Yes, I am planning to make the complete video series on Spring boot . Stay Tuned😇

    • @Sushant.Godbharle
      @Sushant.Godbharle 2 місяці тому

      ​@BitsAndBytes0101 please start it as soon as possible ! Most awaited Spring Boot playlist !

  • @01_shrutiakolkar79
    @01_shrutiakolkar79 3 місяці тому +2

    firstly I thought streams are difficult part in java 8, this video help me to understand concept more clearly. Thank you!!

  • @jyotiranjanpanda6142
    @jyotiranjanpanda6142 7 місяців тому +2

    wating for new videoes..........

    • @BitsAndBytes0101
      @BitsAndBytes0101  7 місяців тому +1

      Thank you ♥️. Very soon new video coming.. 😇

  • @RakeshKumar-op6do
    @RakeshKumar-op6do 7 місяців тому +2

    Include reduce() bhai.... overall this is informative

  • @birju__prajapati
    @birju__prajapati 4 місяці тому +3

    Bahut Sahi Tutorial Tha Understanding Bhi Clear Tha. Thank You Sir

  • @Abhishek-df5tf
    @Abhishek-df5tf Місяць тому +1

    Dark theme use mat kijiye

  • @pravinbijewar1258
    @pravinbijewar1258 5 місяців тому +2

    Excellence video

  • @DhananjayKumar-bd2jg
    @DhananjayKumar-bd2jg 26 днів тому +1

    Really Amazing video, InDepth content on stream, keep it up sir:)

  • @himanshusharma4388
    @himanshusharma4388 Місяць тому +1

    kaha se teep teep kar likh rahe ho code

  • @priyanshusuman8608
    @priyanshusuman8608 2 місяці тому +1

    How can i reverse list of string using stream api

    • @BitsAndBytes0101
      @BitsAndBytes0101  2 місяці тому +1

      You an use following ways: List reversedList = originalList.stream()
      .sorted(Collections.reverseOrder())
      .collect(Collectors.toList());

    • @priyanshusuman8608
      @priyanshusuman8608 2 місяці тому

      @@BitsAndBytes0101 this will sort the list as well , I don’t want to sort the list for eg :I have a list = [“shanu”,”monu”,”nikhil”,”sonu”]
      I want output as [“ sonu”,”nikhil”,”monu”,”shanu”] using stream api

    • @theviralsquad760
      @theviralsquad760 Місяць тому

      Use .filter() for that

    • @jabidkhan6085
      @jabidkhan6085 3 дні тому

      @@priyanshusuman8608 List newlistt = List.of("shanu", "monu", "nikhil", "sonu");
      List filterlistt = newlistt.stream().distinct().collect(Collectors.toList());
      Collections.reverse(filterlistt);
      System.out.println("Reverse List filter " + filterlistt);
      Output will come => Reverse List filter [sonu, nikhil, monu, shanu]

  • @paragshendkar7406
    @paragshendkar7406 6 місяців тому +2

    thank you bhai minimal aur efficient way me sikhne ke liye

  • @sahildadhich59
    @sahildadhich59 4 місяці тому

    nice video, but interview questions or dalo stream pe

  • @mohitsaxens5077
    @mohitsaxens5077 22 дні тому

    In the last program, Can we also filter based on gender and count?

  • @akashdeepgupta2085
    @akashdeepgupta2085 7 місяців тому +2

    Helpful video, thanks✨

  • @kingajable
    @kingajable 7 місяців тому +2

    you doing great job 👍

  • @priyanshusuman8608
    @priyanshusuman8608 2 місяці тому

    Please make a video in collectors

  • @aishurajas2507
    @aishurajas2507 2 місяці тому

    Thank for sharing such a valuable contents. Please share more programs using stream API. your way of explaining the concept is awesome.
    Thanks alot.

  • @BHARATHISINGARESI
    @BHARATHISINGARESI 2 місяці тому +1

    Great explanation sir

  • @sharmaroy3509
    @sharmaroy3509 5 місяців тому +1

    Sir you are doing very good job 🚩🚩

    • @BitsAndBytes0101
      @BitsAndBytes0101  5 місяців тому

      Thank you ❤

    • @sharmaroy3509
      @sharmaroy3509 5 місяців тому

      @@BitsAndBytes0101 Sir,you are truly doing a fantastic job, sir. Your video content is quite beneficial for both novices and experts. Please keep up the good work and continue to produce helpful stuff.Once more, you have my salutations

  • @ShamimKhan.17
    @ShamimKhan.17 2 місяці тому

    Thank you so much!👏👏

  • @sankuru.nageswararao1098
    @sankuru.nageswararao1098 3 місяці тому +1

    Superb...

  • @deveshsonam
    @deveshsonam 7 місяців тому +1

    Great video.....

  • @Human_Goodness
    @Human_Goodness 4 місяці тому

    pls make video on aggregation and projections.

    • @BitsAndBytes0101
      @BitsAndBytes0101  4 місяці тому

      Sure I will make thank you for your comment ♥️

  • @Coders_World
    @Coders_World 4 місяці тому

    You explained it really well.. Thanks.

  • @mamtasahoo2633
    @mamtasahoo2633 3 місяці тому

    Very Excellent video