II B.Tech II Sem CSE Java Lab Exercise - 4b (Methods)

b) Method Overloading

Aim: To write a JAVA program implement method overloading

Description:



Program:

class A 
{
int l=10,b=20; 
int area()
{
return l*b; 
}
int area(int l,int b) 
{
return l*b; 
}
}
class overmethoddemo 
{
public static void main(String args[]) 
{
A a1=new A();
int r1=a1.area(); 
System.out.println("The area is: "+r1);
int r2=a1.area(5,20);
System.out.println("The area is: "+r2); 
}
}

Output:


No comments

File Uploading in PHP

  File Uploading in PHP PHP allow you to upload any type of a file i.e. image, binary or text files.etc..,PHP has one in built global variab...