This is amazing and i really like this video and guy also Don't worry we are supporting you all time and motivate you to making a lot of videos for java
I think this is the only channel on RUclips from which you can get idea how to implement the oops concept better ..thank you so much for uploading these videos sir please continue this series. and one more thing -if you can brief the project objective before implementing so that we can compare our implementation .. Thank you so much again..
Excellent oop tutorial with theory and implementation that theory in project. Someone in the comment section are saying for database connectivity, jsp, serverlet, jdbc gui tutorial in this playlist. Please avoid those comment for this playlist, if you can make those tutorial then do that in another playlist, don't mix those tutorial in this playlist. Make this playlist only for oop theory and project based implementation. And request to you please continue this oop series with advanced concept of oop and make project using those oop concecpt. So that we can actually think in oop way and can implement this. Please , please continue this series with more only oop implementation project with more advanced concept and class digram. We are waiting for your amazing project based oop concept series.
Thanks man you are awesome! I know what you guys need and what are content that lacks on youtube. I will try my best to make such projects. And also you made my day :)
@@_eazyalgo thanks brother. Eagerly waiting for your another masterpiece video in this playlist. 2.5 month since we don't get any video from you in this playlist. Please continue and complete this oop project based series. Know you are busy but we are waiting with hope
I think there is an error in line 42 of Album class. The index have to >= 0. If you reach to last and want to reverse to the first song. Just add 4 lines at last else block and comment EazyAlgo's 2 lines code. 1) Here for reversing LAST to First song listIterator = playList.listIterator(0); if(listIterator.hasNext()) { System.out.println("Now playing " + listIterator.next().toString()); } 2) Here for reversing First to Last listIterator = playList.listIterator(playList.size()); if(listIterator.hasPrevious()) { System.out.println("Now playing " + listIterator.previous().toString()); }
after deleting a song, should it stay deleted even when you re run the code. I was assuming the list of songs would come back again. I currently on have two songs available because i deleted two to test it
thank you for nice explanation sir, you did not write code for playing the (all) songs in a album and printing them and among several playlist. here we are able to play and modify the songs which are there in playlist only but not in album.
Can I upload these level of projects on github? What are the additional features that I need to add to this project to make it look attractive on github
I don't know if you speak Hinglish or not, but thank you for speaking in English. A lot of videos for Java tutorials are in Hinglish and it's irritating as I don't know Hinglish.
enjoyed learning ,, i got an exception...Exception in thread "main" java.lang.NullPointerException: Cannot invoke "java.util.ArrayList.iterator()" because "this.songs" is null ...what to do?
bro can u explain what is the purpose of (new Song (title, duration)) at 7:20 and what is the logic to put new key word before class name i am new in java not familiar with this concept please give me some references link for that thanks
hey bro, a small question. why did you use iterator in one place and listiterator in another? what's the difference between the two? Also, i don't really understand the significance of adding the boolean forward. what is the use of forward here?
you should mention what the programm will be capable of in the beginning. Otherwise there is no way of trying to build it by yourself before comparing it to your programm
hi, first of all your project is so nice :) ı have to ask something.I have a project,my lecturer wants a project and he wants to include inheritance,interface,polymorphism,generic class, generic collections and lambda function. and your project include inheritance and interface and how can I add other functions at this project? if you can help me,I will be so happy.
Plz use dark theme as I am seeing this video at night...it's quite irritating... that's the only thing otherwise everything about concept is super good... keep doing it ❤️
@@_eazyalgo hey I joined Capgemini 1 month back and my training is in java devOps and during this one month I learnt core java and java 8 features but I am unable to implement those in project like car parking simulation
Hi! I have a question, does this only work for IntelliJ IDEA or can it work also with other IDEs? I'm a beginner in coding and I use Eclipse as my IDE in Java, i doubled check and had all of the codes right yet there are some errors. What do i need to do?
It will be better if you just understand the concept and try to implement on your own, if any futher queries then email me at abhay10june1999@gmail.com
This is amazing and i really like this video and guy also
Don't worry we are supporting you all time and motivate you to making a lot of videos for java
Thanks man really appreciate it. I need more people like you :)
your project is just amazing sir ...... going through oops concept .. by clearing every crystalls :) awesome sir
Thanks Khushi :)
Amazing sir .. most understandable oops video on RUclips thanks please keep uploading
You literally made my day!
I think this is the only channel on RUclips from which you can get idea how to implement the oops concept better ..thank you so much for uploading these videos sir please continue this series.
and one more thing -if you can brief the project objective before implementing so that we can compare our implementation ..
Thank you so much again..
Thanks Tabassum :) I'll definitely work on your feedback.
Thanku bro i am really appreciate your hard work . I watched all videos for your.
Thanks Vikas :)
The project is so nice🥰. But Have only one doubt - What is the uses of 'forward' boolean variable at time = 32:05
thanks bro make more videos o this,everywhere they uses swing and advance concepts but this is really informative
Thanks bro :)
It would be very helpful if you could tell in the beginning the aim of the project. So that we can try on our own and compare our solutions with yours
Yes I should have, will take care from next video
Excellent oop tutorial with theory and implementation that theory in project. Someone in the comment section are saying for database connectivity, jsp, serverlet, jdbc gui tutorial in this playlist. Please avoid those comment for this playlist, if you can make those tutorial then do that in another playlist, don't mix those tutorial in this playlist. Make this playlist only for oop theory and project based implementation.
And request to you please continue this oop series with advanced concept of oop and make project using those oop concecpt. So that we can actually think in oop way and can implement this.
Please , please continue this series with more only oop implementation project with more advanced concept and class digram. We are waiting for your amazing project based oop concept series.
Thanks man you are awesome! I know what you guys need and what are content that lacks on youtube. I will try my best to make such projects.
And also you made my day :)
@@_eazyalgo thanks brother. Eagerly waiting for your another masterpiece video in this playlist. 2.5 month since we don't get any video from you in this playlist. Please continue and complete this oop project based series.
Know you are busy but we are waiting with hope
@@dreamboy871 I have to do it soon now :)
please upload more videos on real time , awesome work ...God bless you
Thanks means a lot for me! :)
Why do we need to use this "forward" variable please explain
I think there is an error in line 42 of Album class.
The index have to >= 0.
If you reach to last and want to reverse to the first song. Just add 4 lines at last else block and comment EazyAlgo's 2 lines code.
1) Here for reversing LAST to First song
listIterator = playList.listIterator(0);
if(listIterator.hasNext()) {
System.out.println("Now playing " + listIterator.next().toString());
}
2) Here for reversing First to Last
listIterator = playList.listIterator(playList.size());
if(listIterator.hasPrevious()) {
System.out.println("Now playing " + listIterator.previous().toString());
}
Awesome, sir!
Yehh good bro..
Plz make one project using jsp, servlet, jdbc, with scratch along with connectivity in jdbc.
Yeah man! Sure
Project with DSA ❤ thanks man
This video and enough to explain project to interviwer
I don't think this project will get you an interview.
@@_eazyalgo then what projects are best for interview pls tell
@@jaggu4241 please reach out to me on LinkedIn www.linkedin.com/in/abhay-maurya-2a315416b/
@@_eazyalgoFor internship can I use this project on my CV
Thank you very much! You are a clear man!
Thanks man
Thanks for this amazing video.
Thanks Darshan :) Consider subscribing
Already subscribed :D
Excellent explanation abhay, Keep uploading more such videos on OOPS .
So glad, you found it useful!
after deleting a song, should it stay deleted even when you re run the code. I was assuming the list of songs would come back again. I currently on have two songs available because i deleted two to test it
Im getting error as null pointer exception in main because it cannot invoke arraylist.iterator() and.cuz this.songs is null
Why u use empty constructor, without using that also it will works??
thats good sir u changed a theam
name of song at 7:12 please
what is the shortcut to add constructor I couldn't hear it properly
thank you for nice explanation sir, you did not write code for playing the (all) songs in a album and printing them and among several playlist. here we are able to play and modify the songs which are there in playlist only but not in album.
you created two objects of Album by name album and another one by album too, is it possible (album 1, AC/dC) (album2, Eminem) A little confusing.
Wow oswm please upload other projects on java plz plz plz plz
Yeah working on it
Thanks for the Video
Welcome :)
Upload such more moderate level projects on Core Java.
Yes Ishan!
@@_eazyalgo Thank you bro
Bro, can you make a video using the same project hibernate?
please make more videos like this
Working on it!
Pls upload projects on JAVA with UI using jsp, servlet, jdbc, along with connectivity in jdbc.
which will help in crack interview .
Yes man sure!
Can I upload these level of projects on github? What are the additional features that I need to add to this project to make it look attractive on github
I don't know if you speak Hinglish or not, but thank you for speaking in English. A lot of videos for Java tutorials are in Hinglish and it's irritating as I don't know Hinglish.
Thanks for your response!
Hey, can you explain why we use tostring method?
What is it's need to the project??
toString() method basically converts things to string format, so we can print it
enjoyed learning ,, i got an exception...Exception in thread "main" java.lang.NullPointerException: Cannot invoke "java.util.ArrayList.iterator()" because "this.songs" is null ...what to do?
import song of ur choice
bro can u explain what is the purpose of (new Song (title, duration)) at 7:20 and what is the logic to put new key word before class name i am new in java not familiar with this concept please give me some references link for that thanks
new keyword means you are creating a new object corresponding to that class.
Awesome bro..🔥
But I have a doubt , such type of project with no Database n GUI and only based on oops n Java will be worth in our resume na ?
No man. You cannot add it to your resume its just for sharpening your skill in object oriented design
@@_eazyalgo Acha fine..
Bro can u help me out with a project in Java
@@ubaid3212 Contact me here : www.linkedin.com/in/abhay-maurya-2a315416b/
How to integrate a good UI with this code?
why the song sound doesnt come out?
You want me to run out of ideas for next videos?
hey bro, a small question. why did you use iterator in one place and listiterator in another? what's the difference between the two? Also, i don't really understand the significance of adding the boolean forward. what is the use of forward here?
By using iterator we can retrieve only in forward direction and list iterator can use for backward iteration bro
Hats off dude bro i wanna connect you cozz we got same taste in music
Sure bro
Can i use it uin my college mini project?
Its you who have to decide, whether this project is good enough to use in your college project.
Amazing
Thanks man subscribe for more!
you should mention what the programm will be capable of in the beginning. Otherwise there is no way of trying to build it by yourself before comparing it to your programm
but still great stuff, keep it up
@@Jan-gq3pj Thanks for suggestion man, I'll show the end product at the beginning of video. Consider subscribing :)
@@_eazyalgo Since you responded so fast there is no way of not subscribing haha
@@Jan-gq3pj Now you have to share my videos with your friends too I guess :p
Bro I have an problem the song is not playing
hi, first of all your project is so nice :) ı have to ask something.I have a project,my lecturer wants a project and he wants to include inheritance,interface,polymorphism,generic class, generic collections and lambda function. and your project include inheritance and interface and how can I add other functions at this project? if you can help me,I will be so happy.
Which new features you added here which are different from existing music player systems??
0 feature. I just showed how OOP based project build
@@_eazyalgo ok thanks
Pls upload projects which will help in crack interview .Thanks for amazing videos so far
Yes I can't upload these days due to busy schedule, but will be back soon
Can you give src plz
Thanks for explaining in detail.just want to ask,I am trying to change song title and artist name but after that it is not executing properly.
Glad you found it useful, can you send me the exact error?
@@_eazyalgo yes, where should I have to send it?
@@harshadagadakh2254 Connect me here : www.linkedin.com/in/abhay-maurya-2a315416b/
Plz use dark theme as I am seeing this video at night...it's quite irritating... that's the only thing otherwise everything about concept is super good... keep doing it ❤️
Thanks for the feedback Kiran :)
25:41
Sir I am not getting where trackNumber variable is initialised and it will giving an error
Please elaborate your problem and connect me at abhay10june1999@gmail.com
un suscriptor mas !
I thought this will use swing or something with UI?
thank you so much
Really appreciate it :)
It shows nullpointer exception while adding the first song. Can you please help me that what is the issue?
You must have missed something while writing the code
@@_eazyalgo trying to figure it out.
@@shrabonisinha Sure, let me know if you need any help :)
@@_eazyalgo thanks a lot for this cooperation. I'll try once again. And obviously inform you in this comment section.
@@shrabonisinha Thanks Shraboni
is this project working now?
bro please do more java oops related projects
I'am working on it
Hey how did u get to know that which concept is to be used .......i am unable to implement these core java concept into any problem statement
Hi Sourabh, Its all upon practise, start with easy problem statement and with time and consistency you'll get to know everything.
@@_eazyalgo hey I joined Capgemini 1 month back and my training is in java devOps and during this one month I learnt core java and java 8 features but I am unable to implement those in project like car parking simulation
@@sourabhchougule5642 Have patience, one month is not enough to implement things specially in Java.
@@_eazyalgo ok.....but make tutorial for helping people like me....it will be good for us to improve....in IT career
@@sourabhchougule5642 Sure, working on more tutorials :)
Please tell me which software was used to write the code?
IntelliJ Idea
37:19
Well explained🔥. Do some project on managament system using java,jsp,database connectivity that will be really very useful❤️🙏
Yeah sure!
3:50
I am doing this project can u please tell me in which software did you do the project in eclipse?
Use IntelliJ ide
Thanks for the reply bro🙂🙂..
@@ravikiran4015 My pleasure bro :)
which java editor is this?can you please tell
IntelliJ Idea
But it's a good practice to create empty constructor?
Its good practice to make an empty constructor while working with third party framework
Thanks. My autocorrect just removed "why" from the sentence.
Which IDE you have used
Intellij Idea by jetbrains
Bro can you share SRS for this project.
Hello bro 👋👋
Hey Ravi! Source code is there in description
Hiii abhya .. in same code I meet on one error. .. can you please solve this for me ?
Hey Mitali, you can email me the detailed issue at abhay10june1999@gmail.com
Can i keep this in my resume
This project won't have that level of impact on your resume
how to add music in this project?
That's a whole different story Priyansh
@@_eazyalgo ohh okay,but can we try adding music by wave form format? ,i dont have enough knowledge about this,just i am guessing
Is the package in Line 1 necessary?
Package is always there whenever you create any Java project.
Could you please send this full code
Source code link is in description.
Hi! I have a question, does this only work for IntelliJ IDEA or can it work also with other IDEs? I'm a beginner in coding and I use Eclipse as my IDE in Java, i doubled check and had all of the codes right yet there are some errors. What do i need to do?
It will be better if you just understand the concept and try to implement on your own, if any futher queries then email me at abhay10june1999@gmail.com
which platform did u use sir
Intellij Idea
sir will the program plays a song for real
It won't
Bro wt software u r using
IntelliJ idea
Bro this project code in pdf please
Bro source code is hosted on github and link in description.
Let me create another Gaana APP using java 🥰🥰
Sure :)
ye kaun sa software hai
Intellij Idea
Is this Android studio you are typing with
IntelliJ idea
is it java swing based project? or just oops?
Its core Java and OOP mini project
by mentioning Eminem I knew I was at the right place
hehe, glad to know that
Code chahiye
Is this a mini project ?
Yes you can consider it as a mini project
App kha h bhai isme??
App nhi to aur kya hai?
@@_eazyalgo bhai app jesa mob. Application typ
@@priyasingh-ik6iu Sirf mobile application hi app nhi hoti
Hii am getting errors
Please elaborate what errors exactly.
Bro plz make next vedio I’m eagerly waiting ✨
So busy these days bro, will be up with new video soon.
For those expecting it will play song it doesn't :|
Yeah it doesn't as of now :(
Thank you so much sir...
Can i get your Instagram
abhaylivenow
@@_eazyalgo is this project working now?