Created
June 11, 2019 17:41
-
-
Save denizfurkan/5c5e5e47ea23f3095479be4a9d7745be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try { | |
Integer[] array = new Integer[]{1, 2, 3}; | |
System.out.println(array[5]); | |
}catch (Exception e){ | |
System.out.println("Hata Oluştu"); | |
} | |
finally { | |
System.out.println("Finally Bloğu Her Zaman Çalışır!"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment