Skip to content

Commit

Permalink
Merge pull request amitshekhariitbhu#49 from fmastale/master
Browse files Browse the repository at this point in the history
link to try/catch/finally clause explanation
  • Loading branch information
amitshekhariitbhu authored Nov 5, 2017
2 parents 31be5a2 + 8b98251 commit 309d949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ It is also a good practice to annotate overridden methods with `@Override` to ma
* What does the keyword `synchronized` mean? [Link](https://stackoverflow.com/a/1085745/2621950)
* What are `transient` and `volatile` modifiers? [Link](http://javaexplorer03.blogspot.in/2015/07/difference-between-volatile-and.html)
* What is the `finalize()` method?
* How does the `try{} catch {} finally{}` works?
* How does the `try{} catch{} finally{}` works? [Link](http://tutorials.jenkov.com/java-exception-handling/basic-try-catch-finally.html)
* What is the difference between instantiation and initialization of an object?
- Initialization is the process of the memory allocation, when a new variable is created. Variables should be explicitly given a value, otherwise they may contain a random value that remained from the previous variable that was using the same memory space. To avoid this problem, Java language assigns default (right after initialization) values to some data types:
* `boolean` defaults to `false`;
Expand Down

0 comments on commit 309d949

Please sign in to comment.