Skip to content

Instantly share code, notes, and snippets.

@denizfurkan
Created June 11, 2019 17:42
Show Gist options
  • Save denizfurkan/5e52708f9f085019b829849963ed5df3 to your computer and use it in GitHub Desktop.
Save denizfurkan/5e52708f9f085019b829849963ed5df3 to your computer and use it in GitHub Desktop.
try {
Integer[] array = new Integer[]{1, 2, 3};
System.out.println(array[2]);
}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