Let's say I have this custom component. It subclasses JMenuItem and all instances use the same Font object, although none share the same instance. For example,
public abstract class JFooMenuItem extends JMenuItem{
public JFooMenuItem(final String title){
super(title);
setFont(new Font("Courier New", Font.BOLD, 12));
}
}
Now, given that there may be up to 10+ menu items, would it be more efficient to make the Font instance a shared, static member variable, or is this current setup (i.e. the code above) just fine (memory-management-wise)?
protected Font font = new Font()orpublic static final Font font = new Font(). I think the second option is far better in coding style. – Petar Minchev Nov 14 '11 at 12:18premature optimizationis used too much as an excuse of poor coding. The programmers hands won't break if he writes two more words. Premature optimization is coding some fast fancy algorithms when you have already reached a reasonable performance, and missing the deadline because of that. Writing clean code is not an optimization, it is a necessity. – Petar Minchev Nov 14 '11 at 12:26