Logo

Programming-Idioms

  • Java
  • C
#include <stdlib.h>
int i = atoi(s);
#include <stdlib.h>
i = (int)strtol(s, (char **)NULL, 10);

The atoi() function has been deprecated by strtol()
Integer i = Integer.valueOf(s, 10);

The second argument in the valueOf method denotes the radix (or base)
int i = new Integer(s).intValue();

Throws NumberFormatException if s does not contain a parsable integer
int i = s.chars()
     .map(x -> x - '0')
     .reduce((a, b) -> (a * 10) + b)
     .getAsInt();
int i = Integer.parseInt(s);

Throws NumberFormatException if s does not contain a parsable integer
I : Integer := Integer'Value (s);

New implementation...