Integer和String转换「建议收藏」

Integer和String转换「建议收藏」Integer和String相互转换//1、String转IntegerIntegervalue=Integer.parseInt(s);//2、int转StringString.valueOf(value);//Integer.toString(i)Integer.toString(value);//3、Integer转StringString.val…

大家好,欢迎来到IT知识分享网。

Integer和String相互转换

// 1、String 转 Integer
int value = Integer.parseInt(s); //string转int
Integer value = Integer.valueof(s); //string 转 integer, 进行了装箱操作Integer.valueOf(parseInt(s, 10))

// 2、int 转 String
String.valueOf(value); //Integer.toString(i)
Integer.toString(value);

// 3、Integer 转 String
String.valueOf(value); //obj.toString()
value.toString(value); //通过实例对象value调用静态方法,Integer.toString(int)
Integer.toString(value); //通过类名Integer调用静态方法,Integer.toString(int)

1、String 转 Integer

Integer.parseInt(string s)

  • 对s和radix作判断 (radius是进制,默认为10进制)

  • 对符号位”+”、”-“和字符串长度作处理

  • 取出string中的每个字符转换为数字digit,不能出现非数字位(只能包含char类型 0-9)

  • result乘以radix,result 减去digit

  • 均无异常,如果是负数,则返回result;正数返回-result

// Integer.java
public static int parseInt(String s) throws NumberFormatException { 
   
        return parseInt(s,10); //默认以十进制方式进行转换
    }

public static int parseInt(String s, int radix) throws NumberFormatException { 
   
      // s为null,抛出NumberFormatException异常
      // radix小于2,或者radix,大于36,抛出NumberFormatException异常

        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') { 
    // 是否是以符号位"+"、"-"开头
                if (firstChar == '-') { 
   
                    negative = true;
                    limit = Integer.MIN_VALUE; //
                } else if (firstChar != '+')
                    throw NumberFormatException.forInputString(s); //以非数字,非"+"、"-"开头则抛异常

                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);
                if (digit < 0) { 
   
                    throw NumberFormatException.forInputString(s);
                }
                result *= radix;
                result -= digit;
            }
        } else { 
   
            throw NumberFormatException.forInputString(s); // s
        }
        return negative ? result : -result;
    }
//Character.java
 public static int digit(char ch, int radix) { 
   
        return digit((int)ch, radix);
    }

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;
            if ('0' <= codePoint && codePoint <= '9') { 
   
                result = codePoint - '0';
            } else if ('a' <= codePoint && codePoint <= 'z') { 
   
                result = 10 + (codePoint - 'a');
            } else if ('A' <= codePoint && codePoint <= 'Z') { 
   
                result = 10 + (codePoint - 'A');
            }
            return result < radix ? result : -1;
        }
        return digitImpl(codePoint, radix);
    }

2、Integer 转 String

无论是int类型还是integer类型,最终都是通过Integer的toString(int i)这个静态方法进行转换的
源码自行了解吧,里面还做了一次缓存。

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/25178.html

(0)

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

关注微信