主要是JDK的代码,还是比较的经典,值得一看,例如:

package alg;

/**
* @author zha 字符串之间的转化
*/
public class Alg3StringToint { /**
* @param args
*/
public static void main(String[] args) {
String intv = "1232192373290";
// int value = Integer.parseInt(intv);
// System.out.println(value);
} // JDK的源码还是比较好的研究对象
public static int parseInt(String s, int radix)
throws NumberFormatException {
/*
* WARNING: This method may be invoked early during VM initialization
* before IntegerCache is initialized. Care must be taken to not use the
* valueOf method.
*/ if (s == null) {
throw new NumberFormatException("null");
} if (radix < Character.MIN_RADIX) {
throw new NumberFormatException("radix " + radix
+ " less than Character.MIN_RADIX");
} if (radix > Character.MAX_RADIX) {
throw new NumberFormatException("radix " + radix
+ " greater than Character.MAX_RADIX");
} int result = 0;
boolean negative = false;
int i = 0, len = s.length();
int limit = -Integer.MAX_VALUE;
int multmin;
int digit; if (len > 0) {
char firstChar = s.charAt(0);
if (firstChar < '0') { // Possible leading "+" or "-"
if (firstChar == '-') {
negative = true;
limit = Integer.MIN_VALUE;
} else if (firstChar != '+')
throw new NumberFormatException(s); if (len == 1) // Cannot have lone "+" or "-"
throw new NumberFormatException(s);
i++;
}
multmin = limit / radix;
while (i < len) {
// Accumulating negatively avoids surprises near MAX_VALUE
digit = Character.digit(s.charAt(i++), radix);
if (digit < 0) {
throw new NumberFormatException(s);
}
if (result < multmin) {
throw new NumberFormatException(s);
}
result *= radix;
if (result < limit + digit) {
throw new NumberFormatException(s);
}
result -= digit;
}
} else {
throw new NumberFormatException(s);
}
return negative ? result : -result;
}
}

最新文章

  1. javascript,jQuery,trim()
  2. Centos6.7安装docker1.7.1
  3. (转)C++中的static关键字的总结
  4. 表单验证插件——validate
  5. 51nod1242 斐波那契数列 矩阵快速幂
  6. thinkphp中关于rbac的两个session
  7. C#多线程(一) 入门
  8. https加密
  9. uva 10951 - Polynomial GCD(欧几里得)
  10. Win7的64位系统如何搭建安卓Android开发环境
  11. Python的集合
  12. 6.824 LAB1 环境搭建
  13. Go 函数方法
  14. LOJ500 ZQC的拼图 二分答案、DP
  15. (转)MySql 获取所有级联父级或所有级联子级
  16. render函数
  17. 导出txt文件
  18. Dubbo -- 系统学习 笔记 -- 示例 -- 只注册
  19. Yii 入门
  20. Django Rest Framework(版本、解析器、序列化、数据验证)

热门文章

  1. ListView的优化
  2. LVS+Keepalived实现MySQL从库读操作负载均衡
  3. myeclipse快捷键收集整理
  4. android实现界面左右滑动(GridView动态设置item,支持每个item按某个属性排序来显示在不同的界面)
  5. [转] Java内部类之闭包(closure)与回调(callback)
  6. MyEclipse修改servlet模版
  7. CSS3 之动画及兼容性调优
  8. gis基本概念之&quot;投影变换&quot;-浅谈
  9. char * 和 void *
  10. DELL R410升级网卡驱动