ERXMutableInteger
is like {@link java.lang.Integer Integer}but mutable, to avoid the excess object creation involved in i = new Integer(i.getInt() + 1)
which can get expensive if done a lot. Not subclassed from Integer
, since Integer
is final (for performance.)
Original Author: Ian F. Darwin (Author of "Java Coolbook" ISBN: 0-596-00170-3
)
|
|
|
|
|
|