Programming Tutorials

Comment on Tutorial - Method Overloading (function overloading) in Java By Abinaya



Comment Added by : happy new year 2017

Comment Added at : 2016-05-14 15:29:24

Comment on Tutorial : Method Overloading (function overloading) in Java By Abinaya
Just look at this wouldn't be fine, whether the below command will work
Math operation m = new methodoverloading();
m.add(5,6);
m.add(5.5,11.5);

Thanks.


View Tutorial