Java Method Overloading | Java Course in Tamil | Logic First Tamil
HTML-код
- Опубликовано: 26 янв 2025
- Java Playlist,
• Learn Java in Tamil
C Interview program playlist,
• C Interview Programs i...
C programming in one video,
• C Programming in Tamil...
C programming playlist
• Introduction to C prog...
C++ Playlist link
• C++ Programming in Tamil
English channel link,
/ @logicfirst31
More useful ah irukku.. Thank you mam....
well explained mam
i like your way of explanation 😍😍😍
Really useful to me mam ....keep doing it well ...tqqq🔥❤️🔥
Thank you so much mam for making this video.
Best always!
Mam can you please continue DSA using java. Some of the concepts are missing in your playlist.. 😢😢😢😢
Kudos to your work ka...Thanks alot
நன்றி
Mam if we give two methods as same name and parameters , if we are calling which method will get invoked
Sister second question ku answer iruka?
Pls post method overriding concept
sure. will add with inheritance
Akka coding gah poodatiga kaa first definition sollitu aprm coding ku vaaga
in my opinion, telling the definition initially will not give clarity. this way is much more logical.
class Av
{
static int add(int a, int b)
{
return (a+b)/2;
}
static double add(double a, double b){
return (a+b)/2;
}
}
class Test
{
public static void main(String[] args)
{
System.out.println(Av.add(11,35));
System.out.println(Av.add(12.3,12.5));
}
}
thank u