Effective Java 05 Avoid creating unnecessary objects

it2022-05-05  114

String s = new String("stringette"); // Don't do this. This will create an object each time

Vs

String s = "stringette";

 

class Person {

private final Date birthDate;

// Other fields, methods, and constructor omitted

/**

* The starting and ending dates of the baby boom.

*/

private static final Date BOOM_START;

private static final Date BOOM_END;

static {

Calendar gmtCal =

Calendar.getInstance(TimeZone.getTimeZone("GMT"));

gmtCal.set(1946, Calendar.JANUARY, 1, 0, 0, 0);

BOOM_START = gmtCal.getTime();

gmtCal.set(1965, Calendar.JANUARY, 1, 0, 0, 0);

BOOM_END = gmtCal.getTime();

}

public boolean isBabyBoomer() {

return birthDate.compareTo(BOOM_START) >= 0 &&

birthDate.compareTo(BOOM_END) < 0;

}

}

   

NOTE

When using Adapter pattern don't created an new object of the backing object since there is no need for the specific state of the Adapter object.Prefer primitives to boxed primitives, and watch out for unintentional autoboxing.

   

转载于:https://www.cnblogs.com/haokaibo/p/avoid-creating-unnecessary-objects.html


最新回复(0)