Java Bangla Tutorials 136 : super keyword (part-1)

preview_player
Показать описание
➡️ In this video, I will discuss the usage of the super keyword to call the superclass variable.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:11) super keyword for accessing a super class variable
⌨️ (06:18) 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
Рекомендации по теме
Комментарии
Автор

Very helpful content.
Thank you so much !

shohanrahman
Автор

khuv valo laglo vai...amader boi ew eto sundor kore bujhaya deynai

technology
Автор

Good tutorial.We need tutorial on data structure.

setukanti
Автор

Apnar lecture er slide ta description a dia dile valo hoto.

MdAlauddin-uczx
Автор

Sir সুপার আর সাব ক্লাসের x এর ভ্যালু একসাথে প্রিন্ট করবো কিভাবে?

koushiksarkar
Автор

package happyCoding;

public class S {

int x=10;

}

package happyCoding;


public class T extends S {
int x=5;

void display(){

}
}


package happyCoding;


public class Testtt {
public static void main(String[] args) {

T ob=new T();
ob.display();
}



}

susmita
Автор

package overridingmethod;

public class Person {

String name = "Elora";
int age = 20;

}
package overridingmethod;

public class Student extends Person {

String name = "Riya";
int age = 21;

void display() {
System.out.println("Name : " + super.name);
System.out.println("Age : " + super.age);
}
}
package overridingmethod;

public class Test {

public static void main(String[] args) {

Student s = new Student();
s.display();
}

}

elorabarua
welcome to shbcf.ru