Considérons le code suivant.
public class Action {
private static int i=1;
public static void main(String[] args) {
try{
System.out.println(i);
i++;
main(args);
}catch (StackOverflowError e){
System.out.println(i);
i++;
main(args);
}
}
}
Je suis arriver j'ai de la valeur à 4338
correctement. Après la capture de l' StackOverflowError
sortie se câblés comme suit.
4336
4337
4338 // up to this point out put can understand
433943394339 // 4339 repeating thrice
434043404340
4341
434243424342
434343434343
4344
4345
434643464346
434743474347
4348
434943494349
435043504350
Envisager de Vivre démo ici. Il fonctionne correctement jusqu'à i=4330
. En fait comment cela se fait?
FYI:
Je n'ai code suivant pour comprendre ce qui se passe ici.
public class Action {
private static int i = 1;
private static BufferedWriter bw;
static {
try {
bw = new BufferedWriter(new FileWriter("D:\\sample.txt"));
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) throws IOException {
bw.append(String.valueOf(i)+" ");
try {
i++;
main(args);
} catch (StackOverflowError e) {
bw.append(String.valueOf(i)+" ");
i++;
main(args);
}
}
}
Maintenant précédente question n'est pas là. maintenant, la valeur de i
jusqu'à 16824744
correcte et et fonctionne encore. Je suis hopping cela peut s'exécute jusqu'à la valeur de i=2,147,483,647
(max valeur de type int) sans problème.
Il y a un problème avec println()
. Il existe des réponses ci-dessous. Mais pourquoi?
Quelle sera la réelle raison?