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

  Рет қаралды 16,750

Concept && Coding - by Shrayansh

Concept && Coding - by Shrayansh

Күн бұрын

➡️ Notes link: Shared in the Member Community Post (If you are Member of this channel, then pls check the Member community post, i have shared the Notes link there)
➡️ Join this channel to get access to member only perks:
/ @conceptandcoding
Chapters:
00:00 - What is Java Collection Framework
03:00 - Why we need Java Collection Framework
10:29 - Collections Hierarchy
12:35 - Iterable Interface
26:30 - Collection Interface
37:31 - Collection vs Collections

Пікірлер: 39
@omkardeshpande7482
@omkardeshpande7482 4 ай бұрын
That chart has given a big picture of the whole collections framework! Loved the playlist!
@saurabhpandey8800
@saurabhpandey8800 8 ай бұрын
Best video on Collections learnt a lot of new things
@ConceptandCoding
@ConceptandCoding 8 ай бұрын
Thanks
@pleasantdayNwisdom
@pleasantdayNwisdom 6 ай бұрын
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 Ай бұрын
pls make a video on Collection important methods like CollectionsTomap,Collections.groupingBy and methods they overload
@pranavsharma7479
@pranavsharma7479 2 ай бұрын
cannot find the notes in the community section
@zaheerabass7955
@zaheerabass7955 10 ай бұрын
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 10 ай бұрын
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
@user-ky7hu3gj6i
@user-ky7hu3gj6i 5 ай бұрын
@sheyansh, could you please provide one sample example on Collections.binarySearch method ?
@ConceptandCoding
@ConceptandCoding 5 ай бұрын
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.
@ashishjaiswal4207
@ashishjaiswal4207 6 ай бұрын
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 6 ай бұрын
ack will check and update
@ShekharGupta-de8jr
@ShekharGupta-de8jr 7 ай бұрын
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 7 ай бұрын
Zoho notes doesn't give download option. Let me check how if I can enable some setting in it.
@magesh2353
@magesh2353 7 ай бұрын
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 7 ай бұрын
Noted, you can open lib files in intellj itself
@magesh2353
@magesh2353 7 ай бұрын
@@ConceptandCoding thank u so much man
@kshitiz7129
@kshitiz7129 4 ай бұрын
will this collections playlist enough for coding interviews?
@ConceptandCoding
@ConceptandCoding 4 ай бұрын
this collection playlist covers almost everything. So in my view it should be good
@KrishnaYadav97144
@KrishnaYadav97144 3 ай бұрын
Sir please upload all pdf in drive and share the drive link please it's very useful
@utkarshtripathi2349
@utkarshtripathi2349 10 ай бұрын
Waiting for the streams Video 😁
@ConceptandCoding
@ConceptandCoding 10 ай бұрын
:)
@ankurpatel9670
@ankurpatel9670 10 ай бұрын
Same here. @concept && Coading can you priorotize it? :)
@AtharvaRao0104
@AtharvaRao0104 9 ай бұрын
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 9 ай бұрын
Hey thanks for pointing out. I will make sure of it buddy. Thanks for correcting
@padmajasutar8154
@padmajasutar8154 Ай бұрын
Next parts of this video? Can you please share?
@ConceptandCoding
@ConceptandCoding Ай бұрын
kindly check the java playlist, all videos are numbered in playlist
@krishnendughosh2368
@krishnendughosh2368 7 ай бұрын
Bro just accepted at some point that it is Ite-ratable not iterable ( or Repe-tatable not repeatable) 😅
@AR-nw6dv
@AR-nw6dv 2 ай бұрын
plzz share the notes for member person
@ConceptandCoding
@ConceptandCoding 2 ай бұрын
pls check, i posted again in member community section
@umairalvi7382
@umairalvi7382 Ай бұрын
The font of code is too too smalll
@poojapatole3573
@poojapatole3573 3 ай бұрын
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 3 ай бұрын
thanks for pointing out and sorry for that
@manojkarthik6158
@manojkarthik6158 23 күн бұрын
It's confusing for new learners to hear iteratable when the actual word on the screen is iterable. Thank you.
@ConceptandCoding
@ConceptandCoding 23 күн бұрын
sorry for that.
@agritech9419
@agritech9419 6 ай бұрын
teaching style is good but all collection videos are not accessible everyone imp topics are available for only paid users
@abhipawar9407
@abhipawar9407 5 ай бұрын
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 5 ай бұрын
payment is handled by youtube, kindly wait, it will either refund or process the txn successfully.
@abhipawar9407
@abhipawar9407 5 ай бұрын
@@ConceptandCoding Thanks
Became invisible for one day!  #funny #wednesday #memes
00:25
Watch Me
Рет қаралды 9 МЛН
Sigma Girl Past #funny #sigma #viral
00:20
CRAZY GREAPA
Рет қаралды 26 МЛН
The child was abused by the clown#Short #Officer Rabbit #angel
00:55
兔子警官
Рет қаралды 17 МЛН
Became invisible for one day!  #funny #wednesday #memes
00:25
Watch Me
Рет қаралды 9 МЛН