View Single Post
  #1 (permalink)  
Old 12-30-2007, 02:30 PM
eva eva is offline
Member
 
Join Date: Dec 2007
Posts: 49
eva is on a distinguished road
Writing generic methods
Hi,

I am writing an application in which I have following 4 methods:

Code:
int startProcess(int a) { ... } String startProcess(String a) { ... } float startProcess(float a) { ... }
I want to declare a method that should be generic and that should serve all the purposes.

Please advice.

- PEACE
Reply With Quote
Sponsored Links