Java Bangla Tutorials 140 : this Keyword (part-1)

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

How come people give dislikes to videos like these. Great work vai. May Allah reward you immensely for your amazing service!!

maroofraktim
Автор

Your videos are much more effective than all other videos i have Thanks a lot for making such great videos

shahriarprottoy
Автор

Lucky to find this channel. I feel it difficult studying the professors lecture in canada. Yours one seems more simple to understand

rubayetmuntasir
Автор

bhai ..allah apnere nek hayat dan koruk .. Jibone kichu hoite parle apner theikao beshi kisu dibo ei dunia re

MrLazyMind
Автор

Super brother now i have no doubt about " this" keyword thank you

mohammedhossain
Автор

sir apnar protiti video onek sundor aie video te aktu fun ache

limonhossain
Автор

hello sir, this is used to constructer. we are excellent understood this matter. :)
but jokon amra method overloading kori, method name same but parameter name different,
but akoi parameter lekhi, alada alda method a . to amra okhane bar bar na like e rokom kono kaj kora jai, next parameter a jeta ase seta new kore likhbona.. like this keyword er moton...

asa kori aponar kaser theke answer ta pabo. .
aponi onek valo thakben susto thakben, Allahur kase onek pray kori.
grateful sir.

uzzalcontact
Автор

Please make tutorial on data structure.

setukanti
Автор

package objectorientedprogramming;

public class StudentFile {

String name;
int id;
String dept;

StudentFile(String name, int id) {
this.name = name;
this.id = id;
}

StudentFile(String name, int id, String dept) {
this(name, id);
this.dept = dept;
}

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

void display1() {
this.display();
System.out.println("Dept : " + dept);
}

}
package objectorientedprogramming;

public class Teacher {

public static void main(String[] args) {
StudentFile s1 = new StudentFile("Elora", 100, "C.S.E");
s1.display1();
System.out.println("\n");
StudentFile s2 = new StudentFile("Priya", 101);
s2.display1();

}

}

elorabarua
Автор

package This_keywrd;

public class Person {
String name;
int age;
String haircolour;

Person(String name, int age){
this.name = name;
this.age = age;
}

Person(String name, int age, String haircolour){
this(name, age);
this.haircolour = haircolour;
}

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

package This_keywrd;

public class Test {
public static void main(String[] args) {
Person p1 = new Person("Anisul Islam", 27);
p1.display();

Person p2 = new Person("Rubel", 27, "Black");
p2.display();

}
}

srishteebhattacharjee
Автор

Sir Netbeans 11.1 and 8.2 ar shortcut key same?

asishkrdas