Java Bangla Tutorials 139 : super keyword (part-4)

preview_player
Показать описание
➡️ In this video, I will discuss everything you need to know about super keywords.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:11) super keyword review
⌨️ (10:55) 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
Рекомендации по теме
Комментарии
Автор

All these videos are gems. i come from an English-Medium background and currently I'm doing my Bachelors in Canada. When it comes to the learning perspective of any topic, I always prefer videos in Bengali since it's easier to grab the concepts. I appreciate your hard work a lot because these are super handy for me. I recommend your channel to anyone who wants to learn programming. Very well structured and oriented, couldn't be any better. All the best!!

mehedimostofa
Автор

এতো সুন্দর করে বোঝানর জন্য ধন্নবাদ স্যার

raihanation
Автор

Very educative, informative, easy and clear tutorials ever for beginners.... Thanks a lot vaiii.❤️❤️❤️❤️

shahriarbadhon
Автор

you just don't know how you are helping us!!!
a silly thanks will do nothing to your effort, i think so
only can pray that go

shifaabid
Автор

May Allah bless you and enhance you knowledge so that you can help us more and more. Keep sharing your knowledge

md.mostafizurrahman
Автор

thanks brother for every tutorial videos ....💞

bdfreelancingtips
Автор

Thanks a lot sir <3 ... I love you so much.

avilashbhowmik
Автор

would you please make some videos on data structure and algorithom

md.shamim
Автор

super keyword ki sobkhane use korte parbo..
na sudhu mattro, inheritance er somoy use korbo...

sir please request to answer.

uzzalcontact
Автор

package overridingmethod;

public class Vehicle {

String color;
int weight;

Vehicle(String c, int w){
color = c;
weight = w;
}
void display(){
System.out.println("Color : "+color);
System.out.println("Weight : "+weight);
}
}
package overridingmethod;

public class Car extends Vehicle{

String size;

Car(String c, int w, String s) {
super(c, w);
size = s;
}

void display() {
System.out.println("Color : "+color);
System.out.println("Weight : "+weight);
System.out.println("Size : "+size);
}
}
package overridingmethod;

public class TestCar {
public static void main(String[] args) {
Car t1 = new Car("White", 28, "Big");
t1.display();
}

}

elorabarua
Автор

sir database management system er class dile valo hoi!

hypernucliceaothin
Автор

package advancejava;
public class Super3 {
String type, color;
double weight;
Super3(String t, String c, double w)
{
type=t;
color=c;
weight=w;
}
void display1()
{
System.out.println("Vehicle Type:"+type);
System.out.println("Vehicle color:"+color);
System.out.println("Vehicle weight:"+weight);
}
}

package advancejava;
public class Super4 extends Super3 {
int gear;
Super4(String t, String c, double w, int g) {
super(t, c, w);
gear=g;
}
@Override
void display1()
{
super.display1();

}
}

package advancejava;
public class SuperTest {
public static void main(String[] args) {
Super4 obj=new Super4("Maruti", "Red", 100.8, 25);
obj.display1();
}
}

mdshamsulalammomin
Автор

would you please make some videos on data structure and algorithoms

shabakato
visit shbcf.ru