devxlogo

Alpha to Integer Conversion

Alpha to Integer Conversion

C and C++ programmers are accustomed to using the atoi() function to convert strings to numeric integer values. Although Java doesn’t have an atoi() method, it provides the same capability by way of the more obscure static parseInt() method of the Integer class. This code was tested using JDK1.1.6 under Win95.

 class atoi02{	public static void main(String[] args){		int num = Integer.parseInt("-3625");		System.out.println(				 "The value of the int variable num is " + num);	}//end main()}//end class atoi02
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist