Java Bangla Tutorials 132 : Method Overriding (part-1)

preview_player
Показать описание
➡️ In this video, I will discuss method overriding in Java.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:11) method overriding
⌨️ (11:40) 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
Рекомендации по теме
Комментарии
Автор

Thanks a lot sir.You are making our life specially for the beginners easier.May Allah bless you 💜

sayemkhan
Автор

Your teaching skills are very student-friendly. My university professor should be ashamed of himself for making these simple things much more critical than it is and moreover, his attitude makes a student like me depressed just thinking about how I will complete Java. You are a real teacher, Sir.

foysalahmedsuny
Автор

Thanks a lot. Your explanation is very clear and more durable

OpgamerJamal
Автор

package overridingmethod;

public class Person {

String name;
int age;

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

}
package overridingmethod;

public class Student extends Person {

double cgpa;

@Override
void display() {
System.out.println("Name : " + name);
System.out.println("Age : " + age);
System.out.println("CGPA : " + cgpa);

}

}
package overridingmethod;

public class Test {

public static void main(String[] args) {

Student s1 = new Student();
s1.name = "Elora Barua";
s1.age = 20;
s1.cgpa = 3.93;
s1.display();
System.out.println("\n");
Person p1 = new Person();
p1.name = "Priya";
p1.age = 21;
p1.display();

}

}

elorabarua
Автор

sir, System. out.print(" qualification "+ qualifications) ; ta na diya to age print korlen,

swapnil-ahmed-shishir
Автор

Bhai Qualification a Age Print holo kan?
\

pronoynath
Автор

Sir ami program korte gele string er niche red underline hocce and prgram o hocce na

amerbangla
Автор

Why qualification demonstrate 27 .It showed be illustrate BSC in CSE

mdmarufkhan
Автор

overriding e override na likhle ki hoy na?

mahraislam
Автор

Qualification didn't give the right output...would u please explain it SIR

sadiaahana
welcome to shbcf.ru