I wonder usage scenarios about try-finally blocks without catch blocks. Do you remember this kind of usage used most on what type of scenarios?
|
You would use it to ensure some actions occur after the Just to be clear, this doesn't hide exceptions. The Also, you would also use it when you use the
Code running in Update from Tobias: Update from Paddy: Conditions when finally does not execute in a .net try..finally block The most prevalent example you may see is disposing of a database connection or external resource even if the code fails:
Compiles into something like:
|
|||||||||||||||||||
|
|
The best approach will be
Doing so even clean up called by There are some condition when
Hope this answers your doubt. |
||||
|
|
|
Have a look at the following link: http://programmers.stackexchange.com/questions/131397/why-use-try-finally-without-a-catch-clause It depends on the architecture of your application and the operation you are performing in the block. |
|||
|
|
|
If you have, for example an unmanaged resource you create and use in the try block, you can use the finally block to ensure you release that resource. The finally block will always be executed despite what happens (e.g. exceptions) in the try block. E.g. the lock(x) statement is really:
The finally block will always get called to ensure the exclusive lock is released. |
||||
|
|
|
You need a finally block, when no matter which (if any) exceptions are caught or even if none are caught you still want to execute some code before the block exits. For instance, you might want to close an open file. See Also try-finally |
|||
|
|
|
try/finally: when you do not want to handle any exceptions but want to ensure some action(s) occur whether or not an exception is thrown by called code. |
|||
|
|
|
I don't know anything about C#, but it seems that anything you could do with a try-finally, you could more elegantly do with a using statement. C++ doesn't even have a finally as a result of its RAII. |
|||
|
|
