本文主要是介绍2021-11-23(JZ67 把字符串转换成整数(atoi)),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
import java.util.*;public class Solution {/*** 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可** * @param s string字符串 * @return int整型*/public int StrToInt (String s) {int res = 0, bndry = Integer.MAX_VALUE / 10;int i = 0, sign = 1, length = s.length();if(length == 0) return 0;while(s.charAt(i) == ' ')if(++i == length) return 0;if(s.charAt(i) == '-') sign = -1;if(s.charAt(i) == '-' || s.charAt(i) == '+') i++;for(int j = i; j < length; j++) {if(s.charAt(j) < '0' || s.charAt(j) > '9') break;if(res > bndry || res == bndry && s.charAt(j) > '7')return sign == 1 ? Integer.MAX_VALUE : Integer.MIN_VALUE;res = res * 10 + (s.charAt(j) - '0');}return sign * res;}
}
这篇关于2021-11-23(JZ67 把字符串转换成整数(atoi))的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!