Тёмный

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

Bits And Bytes
Подписаться 1,8 тыс.
Просмотров 38 тыс.
50% 1

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!

Опубликовано:

 

2 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 74   
@Sushant-19s
@Sushant-19s 2 месяца назад
Thank you so much for this video! Keep it up 👍
@the_horre
@the_horre 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 ❤️❤️
@BitsAndBytes0101
@BitsAndBytes0101 6 месяцев назад
Thank you for your support 💖
@MarjitaSaha
@MarjitaSaha 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 месяцев назад
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 месяцев назад
Thank you so much@@BitsAndBytes0101
@AbheyBhatia
@AbheyBhatia 6 месяцев назад
@@BitsAndBytes0101: Please provide Git link.
@BitsAndBytes0101
@BitsAndBytes0101 6 месяцев назад
@@AbheyBhatia Please find the Git URL in this video description also mentioning here: github.com/subhash307/BitsAndBytes
@therandomchannel02
@therandomchannel02 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 месяцев назад
Thank you for your support.❤ Stay tuned ✌️
@JawadKhan-v9m
@JawadKhan-v9m 3 месяца назад
sir please come with spring boot
@BitsAndBytes0101
@BitsAndBytes0101 3 месяца назад
Yes, I am planning to make the complete video series on Spring boot . Stay Tuned😇
@Sushant-19s
@Sushant-19s 2 месяца назад
​@BitsAndBytes0101 please start it as soon as possible ! Most awaited Spring Boot playlist !
@himanshusharma4388
@himanshusharma4388 Месяц назад
kaha se teep teep kar likh rahe ho code
@BitsAndBytes0101
@BitsAndBytes0101 Месяц назад
Keyboard se teep teep kar likh rha bhai 😅
@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.
@Abhishek-df5tf
@Abhishek-df5tf Месяц назад
Dark theme use mat kijiye
@BitsAndBytes0101
@BitsAndBytes0101 Месяц назад
Ok
@krishnamohan6305
@krishnamohan6305 7 месяцев назад
Simple, precise and clear video. well done. Thanks for your efforts.
@BitsAndBytes0101
@BitsAndBytes0101 7 месяцев назад
Glad it was helpful!
@VinayKumar-gy6bx
@VinayKumar-gy6bx 7 месяцев назад
Nice quality nice explaination , please continue other java topics.
@BitsAndBytes0101
@BitsAndBytes0101 7 месяцев назад
Thank you for your support Vinay ♥️ Stay Tuned.
@01_shrutiakolkar79
@01_shrutiakolkar79 3 месяца назад
firstly I thought streams are difficult part in java 8, this video help me to understand concept more clearly. Thank you!!
@BitsAndBytes0101
@BitsAndBytes0101 3 месяца назад
Glad it helped! ♥️
@priyanshusuman8608
@priyanshusuman8608 2 месяца назад
How can i reverse list of string using stream api
@BitsAndBytes0101
@BitsAndBytes0101 2 месяца назад
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 2 дня назад
@@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]
@abhijeetkulkarni8246
@abhijeetkulkarni8246 3 месяца назад
simple and very nice explained
@BitsAndBytes0101
@BitsAndBytes0101 3 месяца назад
Thank you ♥️
@birju__prajapati
@birju__prajapati 4 месяца назад
Bahut Sahi Tutorial Tha Understanding Bhi Clear Tha. Thank You Sir
@BitsAndBytes0101
@BitsAndBytes0101 4 месяца назад
Thank you ❤️
@DhananjayKumar-bd2jg
@DhananjayKumar-bd2jg 26 дней назад
Really Amazing video, InDepth content on stream, keep it up sir:)
@BitsAndBytes0101
@BitsAndBytes0101 11 дней назад
Thanks a ton
@RakeshKumar-op6do
@RakeshKumar-op6do 7 месяцев назад
Include reduce() bhai.... overall this is informative
@BitsAndBytes0101
@BitsAndBytes0101 7 месяцев назад
Thank you for your suggestion ❤
@swapnilsonawane4633
@swapnilsonawane4633 7 месяцев назад
Very helpful video thanks bhai❤
@BitsAndBytes0101
@BitsAndBytes0101 7 месяцев назад
Thank you for your comment ♥️
@pravinbijewar1258
@pravinbijewar1258 5 месяцев назад
Excellence video
@paragshendkar7406
@paragshendkar7406 6 месяцев назад
thank you bhai minimal aur efficient way me sikhne ke liye
@BitsAndBytes0101
@BitsAndBytes0101 6 месяцев назад
Thank you ♥
@mohitsaxens5077
@mohitsaxens5077 22 дня назад
In the last program, Can we also filter based on gender and count?
@BitsAndBytes0101
@BitsAndBytes0101 22 дня назад
Yes we can.
@mohitsaxens5077
@mohitsaxens5077 21 день назад
@@BitsAndBytes0101 Thank you
@jyotiranjanpanda6142
@jyotiranjanpanda6142 7 месяцев назад
wating for new videoes..........
@BitsAndBytes0101
@BitsAndBytes0101 7 месяцев назад
Thank you ♥️. Very soon new video coming.. 😇
@sahildadhich59
@sahildadhich59 4 месяца назад
nice video, but interview questions or dalo stream pe
@priyanshusuman8608
@priyanshusuman8608 2 месяца назад
Please make a video in collectors
@akashdeepgupta2085
@akashdeepgupta2085 7 месяцев назад
Helpful video, thanks✨
@BitsAndBytes0101
@BitsAndBytes0101 7 месяцев назад
Thank you ♥️
@bhawnasuman2230
@bhawnasuman2230 4 месяца назад
It's very informative and useful... thanks
@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.
@BitsAndBytes0101
@BitsAndBytes0101 2 месяца назад
Thank you for your comment ♥️
@kingajable
@kingajable 7 месяцев назад
you doing great job 👍
@BitsAndBytes0101
@BitsAndBytes0101 7 месяцев назад
Thank you so much 😀
@BHARATHISINGARESI
@BHARATHISINGARESI 2 месяца назад
Great explanation sir
@BitsAndBytes0101
@BitsAndBytes0101 2 месяца назад
Thank you
@ShamimKhan.17
@ShamimKhan.17 2 месяца назад
Thank you so much!👏👏
@sharmaroy3509
@sharmaroy3509 5 месяцев назад
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
@Human_Goodness
@Human_Goodness 4 месяца назад
pls make video on aggregation and projections.
@BitsAndBytes0101
@BitsAndBytes0101 4 месяца назад
Sure I will make thank you for your comment ♥️
@sankuru.nageswararao1098
@sankuru.nageswararao1098 3 месяца назад
Superb...
@BitsAndBytes0101
@BitsAndBytes0101 3 месяца назад
Thank you ♥️
@Coders_World
@Coders_World 4 месяца назад
You explained it really well.. Thanks.
@BitsAndBytes0101
@BitsAndBytes0101 4 месяца назад
Thank you 👍🙏♥️
@deveshsonam
@deveshsonam 7 месяцев назад
Great video.....
@BitsAndBytes0101
@BitsAndBytes0101 7 месяцев назад
Thank you so much.
@mamtasahoo2633
@mamtasahoo2633 3 месяца назад
Very Excellent video
@BitsAndBytes0101
@BitsAndBytes0101 3 месяца назад
Thanks for watching
Далее
Stream API in Java
26:04
Просмотров 332 тыс.
28. Streams in Java8 | Collections in Java - Part7
1:15:10
Method Reference in Java 8 | Explained in Hindi
31:44