Recently I worked on FindBugs warnings about exposing internal state, i.e. when a reference to an array was returned instead of returning a copy of the array. I created some templates to make converting that code easier.
Which one did you create to support defensive programming and want to share with the SO crowd?
Templates I've created so far (as examples):
To create a copy of an array to return from a method:
final ${type}[] ${result} = new ${type}[ ${array}.length ];
System.arraycopy( ${array} , 0 , ${result} , 0 , ${array}.length );
To clone an object:
(${o}!= null?(${type})${o}.clone():null)
I like having as a template a "safer" equals() definition:
/**
* Implement equals based on ${cursor}. <br />
* See {@link #compareTo(Object) compareTo}
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals(final Object anObject)
{
boolean res = false;
if(anObject == null) { return false; }
if(anObject == this) { return true; }
if(anObject.getClass() == this.getClass())
{
res = this.compareTo(anObject) == 0;
}
return res;
}
To be sure to always avoid Eq: equals method overrides equals in superclass and may not be symmetric (EQ_OVERRIDING_EQUALS_NOT_SYMMETRIC
), where:
This class defines an equals method that overrides an equals method in a superclass. Both equals methods methods use instanceof in the determination of whether two objects are equal.
This is fraught with peril, since it is important that the equals method is symmetrical (in other words,
a.equals(b) == b.equals(a)
).
IfB
is a subtype ofA
, andA
's equals method checks that the argument is aninstanceof A
, and B's equals method checks that the argument is aninstanceof B
, it is quite likely that the equivalence relation defined by these methods is not symmetric.
This is only for classes implementing Comparable
and allows for:
compareTo()
function);Comparable#compareTo()
asking to ensure that (x.compareTo(y)==0) == (x.equals(y))
(strongly recommended, but not strictly required though).Not a template, but I use array.clone()
instead of System.arraycopy()
. Is there anything wrong with that?
Edit: A template I use when implementing a decorator, especially for an interface with many methods:
wrapped.${enclosing_method}(${enclosing_method_arguments})
It generates an implementation of the current method by delegating the call to a wrapped instance, thus preventing copy/paste errors.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With