기존 답변을 고려 Integer.parseInt
하여 작업을 수행하기 위해 소스 코드를 복사하여 붙여넣고 개선했습니다.
- 잠재적으로 느린 try-catch를 사용하지 않습니다 ( Lang 3 NumberUtils 과 달리 ).
- 너무 큰 숫자를 잡을 수없는 정규 표현식을 사용하지 않습니다.
- 권투를 피합니다 (구아바와 달리
Ints.tryParse()
),
- (달리 어떤 할당을 필요로하지 않는
int[]
, Box
, OptionalInt
),
CharSequence
전체 대신 일부 또는 일부를 허용합니다 String
.
- 기수를
Integer.parseInt
사용할 수 있습니다. 즉 [2,36],
- 라이브러리에 의존하지 않습니다.
유일한 단점은 차이가 없다는 것을 사이 toIntOfDefault("-1", -1)
와toIntOrDefault("oops", -1)
.
public static int toIntOrDefault(CharSequence s, int def) {
return toIntOrDefault0(s, 0, s.length(), 10, def);
}
public static int toIntOrDefault(CharSequence s, int def, int radix) {
radixCheck(radix);
return toIntOrDefault0(s, 0, s.length(), radix, def);
}
public static int toIntOrDefault(CharSequence s, int start, int endExclusive, int def) {
boundsCheck(start, endExclusive, s.length());
return toIntOrDefault0(s, start, endExclusive, 10, def);
}
public static int toIntOrDefault(CharSequence s, int start, int endExclusive, int radix, int def) {
radixCheck(radix);
boundsCheck(start, endExclusive, s.length());
return toIntOrDefault0(s, start, endExclusive, radix, def);
}
private static int toIntOrDefault0(CharSequence s, int start, int endExclusive, int radix, int def) {
if (start == endExclusive) return def;
boolean negative = false;
int limit = -Integer.MAX_VALUE;
char firstChar = s.charAt(start);
if (firstChar < '0') {
if (firstChar == '-') {
negative = true;
limit = Integer.MIN_VALUE;
} else if (firstChar != '+') {
return def;
}
start++;
if (start == endExclusive) return def;
}
int multmin = limit / radix;
int result = 0;
while (start < endExclusive) {
int digit = Character.digit(s.charAt(start++), radix);
if (digit < 0 || result < multmin) return def;
result *= radix;
if (result < limit + digit) return def;
result -= digit;
}
return negative ? result : -result;
}
private static void radixCheck(int radix) {
if (radix < Character.MIN_RADIX || radix > Character.MAX_RADIX)
throw new NumberFormatException(
"radix=" + radix + " ∉ [" + Character.MIN_RADIX + "," + Character.MAX_RADIX + "]");
}
private static void boundsCheck(int start, int endExclusive, int len) {
if (start < 0 || start > len || start > endExclusive)
throw new IndexOutOfBoundsException("start=" + start + " ∉ [0, min(" + len + ", " + endExclusive + ")]");
if (endExclusive > len)
throw new IndexOutOfBoundsException("endExclusive=" + endExclusive + " > s.length=" + len);
}