Тёмный
No video :(

Abstraction In Java (OOP Concept) - Interface v/s Abstract Class 

Naveen AutomationLabs
Подписаться 386 тыс.
Просмотров 60 тыс.
50% 1

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

 

26 авг 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 57   
@rohitlabhe850
@rohitlabhe850 2 года назад
Bhai tusi great ho, I like the way you explain these things. :)
@rd3316
@rd3316 3 года назад
Hey Naveen, this video is just great. Only question I have is , why do we use interface and abstract and when do we use it . With respect to selenium Java
@sumitpandey5707
@sumitpandey5707 Год назад
after watching this video I can clearly explain to anyone what is Abstract and Interface are. Thank you so much, Naveen
@user-gt5ql1wq4z
@user-gt5ql1wq4z 6 месяцев назад
Thanku. Very much for helping me to easy to understand these concepts
@Ahmed-lc2mu
@Ahmed-lc2mu 3 года назад
You have explained better then My CDAC Bangalore Faculties. Thank You!!
@marlynj7930
@marlynj7930 3 года назад
Thanks Naveen--It was a great explanation for a beginner to get the concepts cleared !
@devjewel8345
@devjewel8345 5 лет назад
Great learning to watching your video, thanks a lot. More to Watch more to learn...
@ingilalaudaykumar5275
@ingilalaudaykumar5275 Год назад
excellent ,Naveen
@ananthnaren9183
@ananthnaren9183 4 года назад
Hi , I'm Ananth from india , age 24 , nice to meet you , Im a MS software engineer graduated and I have firm desire to learn programming and programming languages , Android , ios , frontend , backend , object oriented programming. Its my dream and wish to work remote developer and freelancing
@ShoaibEsmaty
@ShoaibEsmaty Год назад
WOW ! what a good way of explanation , First of all I want to thank u for all these amazing videos that U r Making , I am watching your videos from US and they are really helpful . Personally I know most of the java concepts But when it comes with implementations and coding then it kinda making me to struggle alot , so what would be your advice ?
@nandashivaprasad6159
@nandashivaprasad6159 2 года назад
you explained it so well ! thank you so much! Namaste Guru!
@manoharch1203
@manoharch1203 3 года назад
Thanks for the Great Explanation :)
@gurusamyrajagopal3819
@gurusamyrajagopal3819 5 лет назад
Thank you so much Naveen. It was really helpful. very nice explanation . once again Thank you. Keep going on :)
@deepakpatil2397
@deepakpatil2397 5 лет назад
your way of explains is awesome Sir.....
@likithal3277
@likithal3277 6 лет назад
Your teaching is good👌👌👌👌 I am following your videos plzz upload videos on multithreading also sir plzz😀😀
@hakarali6289
@hakarali6289 5 лет назад
That was great Thank u so much Please keep publishing useful lecture like this.
@vaishaliagrawal4781
@vaishaliagrawal4781 5 лет назад
Naveen i have some queries, plz help me in that...
@isuryakant9921
@isuryakant9921 5 месяцев назад
You just taught abstraction and interface Sir you haven't taught other 3 oops or i couldn't find out them Reply sir pls reply I understand your way of teaching
@isuryakant9921
@isuryakant9921 4 месяца назад
Okay sir Found all 👍🏻
@USP7
@USP7 6 лет назад
Since java 8 static method are allowed in interface with method implementation
@naveenautomationlabs
@naveenautomationlabs 6 лет назад
correct, but not with method prototype. :)
@meghavarma3552
@meghavarma3552 5 лет назад
Thankyu so much Sir.. great explanation.. 😊
@naveenautomationlabs
@naveenautomationlabs 5 лет назад
Thanks Megha.
@sriramnagarajanit
@sriramnagarajanit 6 лет назад
Thank you so much Naveen :)
@boobalakrishnan6610
@boobalakrishnan6610 5 лет назад
excellent explanation thank you Naveen :)
@MrYashMundey
@MrYashMundey 3 года назад
amazing !
@m.smanoj4688
@m.smanoj4688 3 года назад
Naveen pls do a video on factory design pattern.
@alxx736
@alxx736 2 года назад
Why cant we use a normal class for Creating the contract for the client ? We dont always need an abstract class or an interface
@tausal1
@tausal1 5 лет назад
Amazing explanation!
@mariabajwa8632
@mariabajwa8632 6 лет назад
thank you
@mownikamahalingam9487
@mownikamahalingam9487 6 лет назад
Hi Naveen, In your example, ICICIBank class implementing RBI and USBank interfaces... Can we have the same method names in two interfaces? Eg. If we have debit() method in RBI as well as in USBank interface, In ICICIBANK Class which method will get implemented?
@rheeshabhkumarsingh2301
@rheeshabhkumarsingh2301 5 лет назад
yes, we can have same method name in two interfaces.... and class which implements those two interfaces will have only one method which will satisfy condition for both interface. But Suppose RBI has int i=1; ... and ICICIBANK has int i=2;.... you can access them separately by using RBI.i and ICICIBANK.i.. sorry, i saw this question now, so replied late... and i am just a viewer
@sauagn
@sauagn 6 лет назад
where we can use interface and abstract class in automation framework can u give one liner examples..
@darshanmm9
@darshanmm9 6 лет назад
Hi naveen What is process to join your online selenium classes?
@naveenautomationlabs
@naveenautomationlabs 6 лет назад
Mail me at naveenanimation20@gmail.com
@prakashvish3988
@prakashvish3988 3 года назад
Hi naveen can interface have " N " number of child classes ?
@naveenautomationlabs
@naveenautomationlabs 3 года назад
Yes
@prakashvish3988
@prakashvish3988 3 года назад
@@naveenautomationlabs thank you so much 👍❤️
@AshishDubeyash4you
@AshishDubeyash4you 5 лет назад
@Naveen: I am able to create static methods in Interface & also able to create static method body. Could you please explain why?
@AshishDubeyash4you
@AshishDubeyash4you 5 лет назад
@Naveen: One scenario I found that if two interfaces has same abstract method with same parameter. So if any class is implementing both Interfaces then it is showing only one method in that Child Class. Just thought of discussing this to you. :)
@ainuraraoufi7336
@ainuraraoufi7336 5 лет назад
Best explanation!thank you Naveen!
@kusumareddy5229
@kusumareddy5229 6 лет назад
Will u please make video on auto it with Selenium
@sivakys
@sivakys 5 лет назад
What is kusuma means 😃🤣🤣🤣
@SaifulIslam-hk3cm
@SaifulIslam-hk3cm 6 лет назад
Hi Naveen I want to join one of your Selenium course. Please let me know what’s the procedure.
@naveenautomationlabs
@naveenautomationlabs 6 лет назад
Gimme your email id
@SaifulIslam-hk3cm
@SaifulIslam-hk3cm 6 лет назад
Saiful021107@gmail.com
@SaifulIslam-hk3cm
@SaifulIslam-hk3cm 6 лет назад
I am from Usa.
@naveenautomationlabs
@naveenautomationlabs 6 лет назад
check your mail. Please do the registration ASAP.
@rajashekar841
@rajashekar841 6 лет назад
rajashekar.cdh@gmail.com
@devsoftwareengg
@devsoftwareengg 4 года назад
Hi Naveen, please share your hithub url.
@ravinaidu4035
@ravinaidu4035 6 лет назад
can any one pls help me
@ankurchatterjee9179
@ankurchatterjee9179 3 года назад
In one video you told abstract method must have at least one abstract method and in this video you are telling you can create abstract class without abstract method. This is contradicting Naveen
Далее
Exception Handling in Java
59:14
Просмотров 65 тыс.
OOP 5 | Abstract Classes, Interfaces, Annotations
1:10:42
Difference between Interface and Absract Class
30:52
Просмотров 180 тыс.
Constructor Concept and This Keyword in Java
45:04
Просмотров 60 тыс.
What is Method and Method Overloading in Java
43:18
Просмотров 23 тыс.
What is Encapsulation in Java - OOP Concept
19:44
Просмотров 71 тыс.
This Is Why Python Data Classes Are Awesome
22:19
Просмотров 802 тыс.