Java has the finalize block which allows to execute some statements after a block is left (executed even if an exception is raised). Example:
try {
...
} catch (Exception e) {
...
} finally {
... // any code here
}
Ada has the controlled objects which allows to implement a Finalize operation but there is no finalize block equivalent as in java. This is useful for logging, closing files, transactions and so on (without having to create a specific tagged type for each possible block).
- How would you implement such finalize block in Ada 2005 (while keeping the code readable)?
- Are there plans in Ada 2012 to allow executing any finalization code easily?
I believe this code will do what you ask; it successfully prints out
42
with the presentraise
or withreturn
. It's an implementation of T.E.D's suggestion.Tested with GCC 4.5.0 on Mac OS X, Darwin 10.6.0.