首页 > 代码库 > 数字字符串转数字,考虑越界问题和小数问题

数字字符串转数字,考虑越界问题和小数问题

优化了一下字符串转换方法,使用的最大和最小值

    public Integer changeType(String s){
        try{
            long lo= Long.valueOf(s);
            if (lo>Integer.MAX_VALUE||lo<Integer.MIN_VALUE)
                {System.out.println(lo+" Integer outbounds");
                return null;}
            else return Integer.valueOf(s);}
        catch(Exception e){ 
            return null;
        }
        }

 

数字字符串转数字,考虑越界问题和小数问题