码迷,mamicode.com
首页 > 编程语言 > 详细

将数字字符串转为数字(java)

时间:2015-09-28 15:56:46      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

 1 //讲数字字符串转为数值型(此处不考虑输入字符串的合法性),不允许使用parseInt方法和Character.digit
 2 public class ConvertNumstr {
 3     public static void main(String[] args) {
 4         System.out.print(convertStr2Num("-2015"));
 5     }
 6     public static int convertStr2Num(String str) {
 7         int length=str.length();
 8         int result=0;
 9         int i=length-1;
10         
11         while (i>0) {
12             char c=str.charAt(i);
13             int num=c-‘0‘;//讲对应的字符型数字,转为数字
14             result+=num*Math.pow(10, length-i-1);
15             i--;
16         }
17         if (str.charAt(0)==‘-‘) {
18             return 0-result;
19         }else {
20             return (int) (result+(str.charAt(i)-‘0‘)*Math.pow(10, length-i-1));
21         }
22     }
23 }

 

将数字字符串转为数字(java)

标签:

原文地址:http://www.cnblogs.com/YH-YH/p/4844173.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!