fork download
  1.  
  2. class Tester
  3. {
  4. public static void main (String[] args)
  5. {
  6. int i = Integer.parseInt("123"); //I is now set to 123
  7. System.out.println(i);
  8. }
  9. }
Success #stdin #stdout 0.07s 380224KB
stdin
Standard input is empty
stdout
123