Java atoi atoi(String s)

Here you can find the source of atoi(String s)

Description

atoi

License

Open Source License

Declaration

public static int atoi(String s) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static int atoi(String s) {
        return Integer.parseInt(s);
    }/*  ww w.  ja va2s .  co m*/
}

Related

  1. atoi(final String str, final int def)
  2. atoi(Object s)
  3. atoi(String s)
  4. atoi(String s)
  5. atoi(String s)
  6. atoi(String s, int pos, int base)
  7. atoi(String str)
  8. atoi(String str)
  9. atoi(String[] s)