Java: asterisk for loading classes

Posted by EarthMind on Stack Overflow See other posts from Stack Overflow or by EarthMind
Published on 2010-04-03T22:36:06Z Indexed on 2010/04/03 22:43 UTC
Read the original article Hit count: 184

Filed under:
|
|

Is loading only the needed classes directly a good way of reducing the overall memory usage of a Java application?

For example:

import java.awt.Graphics;

vs

import java.awt.*;

© Stack Overflow or respective owner

Related posts about java

Related posts about memory