Tagged Questions
13
votes
7answers
2k views
Open-closed principle and Java “final” modifier
The open-closed principle states that "Software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification".
However, Joshua Bloch in his famous book ...
7
votes
2answers
419 views
DAO pattern and the Open-Closed Principle
I've seen and worked with a lot of older, JDBC-based DAO code that usually start out with CRUD methods. My question relates specifically to the retrieval methods, or 'finders'. Typically what I find ...
4
votes
4answers
37 views
Exceptions and errors report order
What rules applies to the following code:
try {
assert (false) : "jane";
} catch (Exception e2) {
System.out.print("ae2 ");
} finally {
throw new ...