calculate Method using Java


  1. public class ssvprg   
  2.   {  
  3.      public static void action(int value)   
  4.        {  
  5.           System.out.println("Int = " + Integer.toString(value));  
  6.        }  
  7.   
  8.       public static void action(String value)   
  9.        {  
  10.          System.out.println("Length = " + value.length());  
  11.        }  
  12.   
  13.     public static void main(String[] args)   
  14.      {  
  15.     // Call with Integer argument.  
  16.     action(1);  
  17.     // Call with String argument.  
  18.     action("cat");  
  19.      }