Java Bangla Tutorials 130 : instanceof Operator

preview_player
Показать описание
➡️ In this video, I will discuss the usage of the instance operator.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:11) The usage of the instance operator
⌨️ (07:25) Outro

🛑 Web development? Checkout following playlists :

🛑 Programming languages? Check out the following playlists:

🛑 Android development? Check out the following playlists:

🛑 HSC Students? Are you worried about ICT? I have created 377 videos for you. check out the following playlists-

🛑 CSE Students? Checkout following playlists :

🛑 MS Office? Trying to learn MS Office to improve your skill? Checkout following playlists :

#java #anisul_islam #java_bangla_tutorial #web_development #bangla_web_development #andorid #javaprogramming #javatutorial #bangla_tutorial #java_anisul_islam
Рекомендации по теме
Комментарии
Автор

Really awesome explanation of instanceof Operator. Thanks for making Java very understandable.

sadathossainchowdhury
Автор

tnx bro. your video is much better then any other tutorial.

kamrulhasan
Автор

thank you so much brother.your video is so helpfull

rohansn
Автор

Good tutorial.
Please make tutorial on data structure.

setukanti
Автор

6:30 te je shortcut ta use kore shob gula line ak alignment e niye ashlen, sheta kibhabe?

MahmudulHossain
Автор

vaia data structure and algorithm er upor vedio chi.

ragibshahariar
Автор

sir, why cant we extends the teacher class for the test class(main class)?

rafsanrakin
Автор

package secondhomework;

public class Animal {

}
package secondhomework;

public class Person extends Animal {

}
package secondhomework;

public class Student extends Person {

}
package secondhomework;

public class InstansceMethod {

public static void main(String[] args) {
Animal a = new Animal();
Person p = new Person();
Student s = new Student();

System.out.println(a instanceof Animal);
System.out.println(p instanceof Person);
System.out.println(p instanceof Animal);
System.out.println(s instanceof Animal);
System.out.println(p instanceof Student);
System.out.println(a instanceof Person);

}
}

elorabarua