1
vote
Is there a destructor for Java?
Perhaps you can use a try ... finally block to finalize the object in the control flow at which you are using the object. Of course it doesn't happen automatically, but neither does destruction in …
4
votes
What are your Java ‘rules’?
Thou shalt document ye code!
You must document all code that you write. When you come back and read it 3 months later it is crucial you have left some hints on what the code does. …
0
votes
Speeding Up Java
Here is an (older) document by Peter Sestoft which is worth reading: Performance in java. Some of the advice is p …
0
votes
When is sql distinct faster than java programming ‘distinct’
SQL distinct is "heavy" because it has to eliminate multiple occurrences. This can be achieved by first sorting the data and then eliminate runs with equal elements. The heaviness relates to the fa …
