Comment on Tutorial - Method Overloading sample in Java By Ganesh Iyer
Comment Added by : ITMIT
Comment Added at : 2011-06-05 19:16:46
Comment on Tutorial : Method Overloading sample in Java By Ganesh Iyer
public class Overload2 {
void add(int m, int n)
{
int sum = m + n;
System.out.println( "Sum of a+b is " +sum);
}
void add(int a, int b, int c) {
int sum = a + b + c;
System.out.println("Sum of a+b+c is " +sum);
}
void add(double a, double b) {
double sum = a + b;
System.out.println("Sum of a+b is "+sum);
}
void add(String s1, String s2)
{
String s = s1+s2;
System.out.println(s);
}
}
class overloadfunc{
public static void main(String args[])
{
Overload2 obj = new Overload2();
obj.add(4,19);
obj.add(4,17,11);
obj.add(1.5,21.5);
obj.add("Life at"," the speed of rail ");
}
}
Output will be:
Sum of a+b is 23
Sum of a+b+c is 32
Sum of a+b is 23.0
Life at the speed of rail
View Tutorial
- Data Science
- React Native
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Read a file having a list of telnet commands and execute them one by one using Java
Open a .docx file and show content in a TextArea using Java
Step by Step guide to setup freetts for Java
Of Object, equals (), == and hashCode ()
Using the AWS SDK for Java in Eclipse
DateFormat sample program in Java
concurrent.Flow instead of Observable class in Java
Calculator application in Java
Sending Email from Java application (using gmail)