Java Tutorials || Java OOPS || 3 Mantras of Object Type Casting || by durga sir

preview_player
Показать описание
You an see more Java videos following link:
---------------------------------------
Java tutorial by durga sir

Java 9 by durga sir

Java 1.8 Version New Features by Durga sir

Adv Java JDBC Tutorial by Durga sir

OCJA 1.8 Java SE 8 Programmer - I (1Z0 - 808 ) By Durga sir

Core Java by NagoorBabu sir

Advenced Java by Nagoorbabu sir

CoreJava by Ratan

Advanced Java jdbc by Ratan

Advjava tutorials - JSP by Ratan

Adv java servlets tutorial by ratan

Servlet and JSP Tutorial by anji reddy

Advanced Java Jdbc by Anjireddy

Hibernate byAnjireddy

Struts by Anjireddy

Spring by Mr.AnjiReddy

ADV JAVA by Naveen

Spring by Mr.Naveen

Hibernate by Mr. Naveen

Struts by Mr.Naveen
Рекомендации по теме
Комментарии
Автор

From my secondary college days, I have got many south Indian teachers, I believed completely and just want to say South Indian Teachers are best for technical subject, thank you so much sir.🙏🙏🙏🙏

abhijitkakade
Автор

I am not from computer background but still I watched it because this teacher teaches such interestingly as if he is delivering superhit dialogues of South movie😂loved it...I was not bored at all

smarter_by_bit
Автор

SUPER .... Very Clear .., You involve your SOUL in Teaching, , , Greate Teacher...!!!

nitendratiwari
Автор

Sir, You are good explainer. Even those who can not understand can easily understand your way of explanation feeling very easy .

kirane
Автор

This lecture really helps in understanding the "Object type casting" concept.
Thank you, sir. We will keep supporting you.

mohanrammanikandan
Автор

beautiful explanation and technical explain i love this teaching durga Sir

navee
Автор

As much as i go deep inside java i am getting to love on it, i wish i could have an income to support you durga sir ;hopefully i can find a proper job i will support you just as a gift .
much love and respect from afghan side .Thank you soo much sir.

preciouspearl
Автор

now after years I got my doubt resolved regarding upcasting and downcasting

gajju
Автор

Very nice explanation sir. You are really the best teacher.Thank you very much sir

Gameofdarkess
Автор

a good elaborate of such typical topic

aarti
Автор

when he said "Yes..plz Response", I just woke up immediately

armaulan
Автор

thank you very much sir for this video

saddamahmad
Автор

is original d object changed? or a new copy of d is created and converted to c?

ankit
Автор

everything is temporary but "in my offline student out 100 people. 90% people are giving wrong answer " is permanent. 🤣🤣🤣

letBuild
Автор

Tq you sir Bahut achhe se samajhaya apne, apke upar love hogaya agar mai ladki hota to apse shadi kar ke coders paida karta❤

Code_With_Mahesh
Автор

Sir, but for interface it's not true...
Consider following example:-
interface I1
{ }
interface I2
{}
Class A implements I2
{}
Class main
{
Public static void main( String[]args)
{
I2 i=new A();
I1 a=( I1) i; //compiles fine but runtime exception, A can't be cast to I1//
}
}
Sir why?? It should give compile time error as I2 can't be converted to I1 as there is no parent child relationship...

soumyajitbanerjee