public static int parseInt(String s) throws NumberFormatException {
//内部默认调用parseInt(String s, int radix)基数设置为10
return parseInt(s,10);
}
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.
*/
//判断字符是否为null
if (s == null) {
throw new NumberFormatException("s == 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;
//char字符数组下标和长度
int i = 0, len = s.length();
//限制
int limit = -Integer.MAX_VALUE;
int multmin;
int digit;
//判断字符长度是否大于0,否则抛出异常
if (len > 0) {
//第一个字符是否是符号
char firstChar = s.charAt(0);
//根据ascii码表看出加号(43)和负号(45)对应的
//十进制数小于‘0’(48)的
if (firstChar < '0') { // Possible leading "+" or "-"
//是负号
if (firstChar == '-') {
//负号属性设置为true
negative = true;
limit = Integer.MIN_VALUE;
}
//不是负号也不是加号则抛出异常
else if (firstChar != '+')
throw NumberFormatException.forInputString(s);
//如果有符号(加号或者减号)且字符串长度为1,则抛出异常
if (len == 1) // Cannot have lone "+" or "-"
throw NumberFormatException.forInputString(s);
i++;
}
multmin = limit / radix;
while (i < len) {
// Accumulating negatively avoids surprises near MAX_VALUE
//返回指定基数中字符表示的数值。(此处是十进制数值)
digit = Character.digit(s.charAt(i++),radix);
//小于0,则为非radix进制数
if (digit < 0) {
throw NumberFormatException.forInputString(s);
}
//这里是为了保证下面计算不会超出最大值
if (result < multmin) {
throw NumberFormatException.forInputString(s);
}
result *= radix;
if (result < limit + digit) {
throw NumberFormatException.forInputString(s);
}
result -= digit;
}
} else {
throw NumberFormatException.forInputString(s);
}
//根据上面得到的是否负数,返回相应的值
return negative ? result : -result;
}
返回指定基数中字符表示的数值。
public static int digit(int codePoint, int radix) {
//基数必须再最大和最小基数之间
if (radix < MIN_RADIX || radix > MAX_RADIX) {
return -1;
}
if (codePoint < 128) {
// Optimized for ASCII
int result = -1;
//字符在0-9字符之间
if ('0' <= codePoint && codePoint <= '9') {
result = codePoint - '0';
}
//字符在a-z之间
else if ('a' <= codePoint && codePoint <= 'z') {
result = 10 + (codePoint - 'a');
}
//字符在A-Z之间
else if ('A' <= codePoint && codePoint <= 'Z') {
result = 10 + (codePoint - 'A');
}
//通过判断result和基数大小,输出对应值
//通过我们parseInt对应的基数值为10,
//所以,只能在第一个判断(字符在0-9字符之间)
//中得到result值 否则后续程序会抛出异常
return result < radix ? result : -1;
}
return digitImpl(codePoint, radix);
}
1.两种方法,一个是再int后面+“”,就可以转为字符串。
另一个,
nt i=12345;
String s="";
第一种方法:s=i+"";
第二种方法:s=String.valueOf(i);
这两种方法有什么区别呢?作用是不是一样的呢?是不是在任何下都能互换呢?
String -> int
s="12345";
int i;
第一种方法:i=Integer.parseInt(s);
第二种方法:i=Integer.valueOf(s).intValue();
这两种方法有什么区别呢?作用是不是一样的呢?是不是在任何下都能互换呢?
以下是答案:
第一种方法:s=i+""; //会产生两个String对象 第一种方法:i=Integer.parseInt(s);//直接使用静态方法,不会产生多余的对象,但会抛出异常 |
--------------------------------------------------------------------
1如何将字串 String 转换成整数 int?
A. 有两个方法:
1). int i = Integer.parseInt([String]); 或
i = Integer.parseInt([String],[int radix]);
2). int i = Integer.valueOf(my_str).intValue();
注: 字串转成 Double, Float, Long 的方法大同小异.
2 如何将整数 int 转换成字串 String ?
A. 有叁种方法:
1.) String s = String.valueOf(i);
2.) String s = Integer.toString(i);
3.) String s = "" + i;
注: Double, Float, Long 转成字串的方法大同小异.