Java Bangla Tutorials 118 : Automatic Type Conversion

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

You're probably the BEST programming teacher I have come across so far in my life! Thank you so much bhaia for these videos!

asmitaashrinkhan
Автор

thank you sir /vai for making this types of video . I am big fan of your teaching . I complete your c programming course . Now I do your java course . your teaching system is brilliant .Probably your are best programming teacher in bangladesh in my opinion .

md.moniruzzaman
Автор

Good tutorial.
Please make tutorial on data structure.

setukanti
Автор

দারুন বুঝাতে পারার ক্ষমতা আপনার ! আসলেই।

LearnWithNoor
Автор

package Method_Overloading;

public class OverLoad {
void add(){
System.out.println("Nothing to add");
}

void add(int a, int b, int c){
System.out.println(a+b+c);
}
void add(double a, double b){
System.out.println(a+b);
}
}

package Method_Overloading;

public class OverloadTest {
public static void main(String[] args) {
OverLoad ob = new OverLoad();
ob.add();
ob.add(10, 20);
ob.add(20.89, 8.97);
ob.add(10, 20, 30);
}
}

sitanath
Автор

package problem;

public class OverlodingMethod {

void add() {
System.out.println("There is nothing");
}

void add(double a, double b) {
System.out.println("Add1 : " + (a + b));
}

void add(double a, double b, double c) {
System.out.println("Add2 : " + (a + b - c));
}

void add(int a, int b) {
System.out.println("Add3 : " + (a + b));
}

}
package problem;

public class OverlodingTest {

public static void main(String[] args) {
OverlodingMethod test1 = new OverlodingMethod();
test1.add(3, 7);
test1.add(3.78f, 'B');
test1.add(3.76f, 7.234, 7);
test1.add();
}

}

elorabarua
Автор

Dada ektai problem majhe modhe sound ta mute hoye jachhe...

SeraShipra