Tagged Questions
4
votes
8answers
1k views
Check if variable null before assign to null?
Is variable assignment expensive compared to a null check? For example, is it worth checking that foo is not null before assigning it null?
if (foo != null) {
foo = null;
}
Or is this worrying ...
2
votes
1answer
102 views
Is there benefit in a generified interface?
Recently in an answer it was suggested to me that this:
public interface Operation<R extends OperationResult, P extends OperationParam> {
public R execute(P param);
}
Is better than ...
2
votes
3answers
98 views
Refactoring advice: maps to POJOs
I currently am part of a project where there is an interface like this:
public interface RepositoryOperation {
public OperationResult execute(Map<RepOpParam, Object> params);
}
This ...
2
votes
9answers
263 views
Java While-Loops
So while rewriting some code, I came across something along the lines of:
Method 1
while ( iter.hasNext() ) {
Object obj = iter.next();
if ( obj instanceof Something ) {
returnValue ...