Jestem całkiem nowy w javie i mam zagnieżdżony kod Try Catch, który drukuje się 3 razy! czy możesz powiedzieć mi dlaczego? Dostaję 3 int z wiersza poleceń i musi zostać zweryfikowany i sprawdzić, czy są w zasięgu i używam try and catch. ale odpowiedzi drukują się 3 razy!
// Global Constants
final static int MIN_NUMBER = 1;
final static int MAX_PRIME = 10000;
final static int MAX_FACTORIAL = 12;
final static int MAX_LEAPYEAR = 4000;
// Global Variable
static int a, b, c;
public static void main(String[] args) {
// String[] myNumbers= new String [3];
// int x =Integer.parseInt(args[0]);
for (int i = 0; i < args.length; i++) {
// System.out.print(args[i]+" ");
validateInput(args[0], args[1], args[2]);
}
}
// Validate User Input
public static boolean validateInput(String value1, String value2, String value3) {
boolean isValid = false;
try {
try {
try {
a = Integer.parseInt(value1);
if (!withinRange(a, MIN_NUMBER, MAX_PRIME)) {
System.out.println(
"The entered value " + value1
+ " is out of range [1 TO 10000].");
}
isValid = true;
} catch (Exception ex) {
System.out.println(
"The entered value " + value1
+ " is not a valid integer. Please try again.");
}
b = Integer.parseInt(value2);
if (!withinRange(b, MIN_NUMBER, MAX_FACTORIAL)) {
System.out.println(
"The entered value " + value2
+ " is out of range [1 TO 12].");
}
isValid = true;
} catch (Exception ex) {
System.out.println(
"The entered value " + value2
+ " is not a valid integer. Please try again.");
}
c = Integer.parseInt(value3);
if (!withinRange(c, MIN_NUMBER, MAX_LEAPYEAR)) {
System.out.println(
"The entered value " + value3
+ " is out of range [1 TO 4000].");
}
isValid = true;
} catch (Exception ex) {
System.out.println(
"The entered value " + value3
+ " is not a valid integer. Please try again.");
}
return isValid;
}
// Check the value within the specified range
private static boolean withinRange(int value, int min, int max) {
boolean isInRange = true;
if (value < min || value > max) {
isInRange = false;
}
return isInRange;
}
1
NilR
18 październik 2012, 01:24
1 odpowiedź
Najlepsza odpowiedź
Odpowiedź jest wypisywana 3 razy, ponieważ umieściłeś wywołanie metody validateInput w pętli for
w main()
, która uruchamia ją trzy razy w przypadku trzech argumentów.
4
NullUserException
18 październik 2012, 01:30
Podobne pytania
Nowe pytania
java
Java to język programowania wysokiego poziomu. Użyj tego tagu, jeśli masz problemy z używaniem lub zrozumieniem samego języka. Ten tag jest rzadko używany samodzielnie i jest najczęściej używany w połączeniu z [spring], [spring-boot], [jakarta-ee], [android], [javafx], [hadoop], [gradle] i [maven].