Тёмный

22. Collections in Java - Part1 | Java Collections Framework in depth 

Concept && Coding - by Shrayansh
Подписаться 130 тыс.
Просмотров 28 тыс.
50% 1

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

 

7 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 49   
@omkardeshpande7482
@omkardeshpande7482 7 месяцев назад
That chart has given a big picture of the whole collections framework! Loved the playlist!
@saurabhpandey8800
@saurabhpandey8800 11 месяцев назад
Best video on Collections learnt a lot of new things
@ConceptandCoding
@ConceptandCoding 11 месяцев назад
Thanks
@Temp-j2x
@Temp-j2x 19 дней назад
​@@ConceptandCoding English k chode , Bharat me reh k english baat karra , Hindi me samjhane nhi ata kya . Wanna be American banna hai bas sabko
@pleasantdayNwisdom
@pleasantdayNwisdom 9 месяцев назад
Watched VIDEO 2 My Motive for commenting: Watching all videos of sir , to get his personal guidance and referals for sde job . My Feeling : Amazing to learn from someone in big position in paypal company Want to be under ur guidance and chatrachaaya Thankyou Shrayansh sir/bhaiya.
@targetsubconscious3003
@targetsubconscious3003 5 месяцев назад
pls make a video on Collection important methods like CollectionsTomap,Collections.groupingBy and methods they overload
@shubhamrawat5758
@shubhamrawat5758 2 месяца назад
Great video as always🙌🙌
@poojapatole3573
@poojapatole3573 7 месяцев назад
Thanks for the explanation but I wish you would have used the correct Interface name "Iterable" and not "Iteratable". I had to constantly keep reminding myself that it is "Iterable".
@ConceptandCoding
@ConceptandCoding 7 месяцев назад
thanks for pointing out and sorry for that
@AtharvaRao0104
@AtharvaRao0104 Год назад
it should be Iterable not iter-ratable .. similarly in another video on database isolation it should be repeatable read and not repeata-table read .. not sure if anyone else pointed out .. but the mistake tends to stick for new learners .. Please correct so that the new learners who are not familiar dont pick the wrong words
@ConceptandCoding
@ConceptandCoding Год назад
Hey thanks for pointing out. I will make sure of it buddy. Thanks for correcting
@girishanker3796
@girishanker3796 2 месяца назад
Even I noticed that. The other video is from the HLD playlist :- Distributed Concurrency Control
@KrishnaYadav97144
@KrishnaYadav97144 7 месяцев назад
Sir please upload all pdf in drive and share the drive link please it's very useful
@zaheerabass7955
@zaheerabass7955 Год назад
Why the utility class should be static? Is it just because we can call the utility methods without creating an object or any other reasons also?
@ConceptandCoding
@ConceptandCoding Год назад
Utility class generally do not change the status of the object. Its method just accept the parameter, do some logic and return the output but it do not change the object status
@padmajasutar8154
@padmajasutar8154 4 месяца назад
Next parts of this video? Can you please share?
@ConceptandCoding
@ConceptandCoding 4 месяца назад
kindly check the java playlist, all videos are numbered in playlist
@YogeshMhaske-k8c
@YogeshMhaske-k8c 8 месяцев назад
@sheyansh, could you please provide one sample example on Collections.binarySearch method ?
@ConceptandCoding
@ConceptandCoding 8 месяцев назад
public class BinarySearchExample { public static void main(String[] args) { List numbers = new ArrayList(); numbers.add(1); numbers.add(3); numbers.add(8); numbers.add(11); numbers.add(14); int key = 8; // Sorting the list first before performing the binary search Collections.sort(numbers); // Performing binary search now int index = Collections.binarySearch(numbers, key); System.out.println("Element " + key + " not found in the list"); } } In this example, the binarySearch method is used to search for the element 8 in a sorted list of numbers. The list is sorted using Collections.sort before applying the binary search. The result is printed based on whether the element is found or not.
@pranavsharma7479
@pranavsharma7479 5 месяцев назад
cannot find the notes in the community section
@utkarshtripathi2349
@utkarshtripathi2349 Год назад
Waiting for the streams Video 😁
@ConceptandCoding
@ConceptandCoding Год назад
:)
@ankurpatel9670
@ankurpatel9670 Год назад
Same here. @concept && Coading can you priorotize it? :)
@manojkarthik6158
@manojkarthik6158 4 месяца назад
It's confusing for new learners to hear iteratable when the actual word on the screen is iterable. Thank you.
@ConceptandCoding
@ConceptandCoding 4 месяца назад
sorry for that.
@AR-nw6dv
@AR-nw6dv 5 месяцев назад
plzz share the notes for member person
@ConceptandCoding
@ConceptandCoding 5 месяцев назад
pls check, i posted again in member community section
@RushiVardhan-vd6fs
@RushiVardhan-vd6fs 22 дня назад
how to become a member
@ConceptandCoding
@ConceptandCoding 22 дня назад
pls check for join button at channel home page or video description section
@kshitiz7129
@kshitiz7129 7 месяцев назад
will this collections playlist enough for coding interviews?
@ConceptandCoding
@ConceptandCoding 7 месяцев назад
this collection playlist covers almost everything. So in my view it should be good
@rishabhvarshney5416
@rishabhvarshney5416 2 месяца назад
you will explode on internet if you remove membership from the playlist.
@sweetygangane4551
@sweetygangane4551 2 месяца назад
Exactly 🎉🎉
@agritech9419
@agritech9419 10 месяцев назад
teaching style is good but all collection videos are not accessible everyone imp topics are available for only paid users
@krishnendughosh2368
@krishnendughosh2368 10 месяцев назад
Bro just accepted at some point that it is Ite-ratable not iterable ( or Repe-tatable not repeatable) 😅
@magesh2353
@magesh2353 10 месяцев назад
how r u able to open Collection.java file and also if possible can u do a video on how to use eclipse or intellij?
@ConceptandCoding
@ConceptandCoding 10 месяцев назад
Noted, you can open lib files in intellj itself
@magesh2353
@magesh2353 10 месяцев назад
@@ConceptandCoding thank u so much man
@ShekharGupta-de8jr
@ShekharGupta-de8jr 10 месяцев назад
Hi, Do you know how can I download this notebook and make my own notes ? Pleas help. It will save lot of time to me. Or if possible could you please share notebook to me ?
@ConceptandCoding
@ConceptandCoding 10 месяцев назад
Zoho notes doesn't give download option. Let me check how if I can enable some setting in it.
@ashishjaiswal4207
@ashishjaiswal4207 9 месяцев назад
ArrayList list = new ArrayList(); list.add(4); list.add(5); list.add(6); Iterator valueIterator = list.iterator(); while(valueIterator.hasNext()){ System.out.println(valueIterator.next()); } for this code output is 5, 6 I checked on onlinegdb, It's compiler fault or is it a bug?
@ConceptandCoding
@ConceptandCoding 9 месяцев назад
ack will check and update
@yashrdoshi
@yashrdoshi 23 дня назад
Output is 4,5,6
@umairalvi7382
@umairalvi7382 4 месяца назад
The font of code is too too smalll
@RajeevKumar-fb3in
@RajeevKumar-fb3in Месяц назад
Wear glasses 🕶️ baby
@abhipawar9407
@abhipawar9407 9 месяцев назад
Hi sir I bought you membership for java today and made payment through upi app but im unable to access the videos, so done again repayment but now also unbale to access will you please check with it. I'm going go have my interview in few days need to cover topics
@ConceptandCoding
@ConceptandCoding 9 месяцев назад
payment is handled by youtube, kindly wait, it will either refund or process the txn successfully.
@abhipawar9407
@abhipawar9407 9 месяцев назад
@@ConceptandCoding Thanks
Далее
Introduction to HashMap & HashTable in Java
1:39:46
Просмотров 105 тыс.
Set and HashSet in Java - Full Tutorial
20:43
Просмотров 221 тыс.
Collections in Java | Advanced Java | Tamil | code io
18:25