Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

TryWorksLikeEnvironment.java 291B

il y a 21 ans
1234567891011121314151617
  1. import java.io.*;
  2. public class TryWorksLikeEnvironment {
  3. static int i;
  4. public static void main(String[] args) {
  5. try {
  6. foo();
  7. try {
  8. i++;
  9. } finally {
  10. i++;
  11. }
  12. } catch (FileNotFoundException e) {
  13. }
  14. }
  15. static void foo() throws FileNotFoundException {}
  16. }