Programming Tutorials

Comment on Tutorial - Type Casting in Java By Saravanan



Comment Added by : Ashwin

Comment Added at : 2012-12-23 05:14:04

Comment on Tutorial : Type Casting in Java By Saravanan
Float f=99.7f;
int i1=Integer.parseInt(f);
above code will not work,bcz parseint method takes only string as a argument


View Tutorial