This is the mail archive of the java-discuss@sourceware.cygnus.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Memory footprint ?



USER     PID %CPU %MEM   VSZ  RSS  TT  STAT STARTED      TIME COMMAND
hasty  64895  0.6  3.2  3892 3036  p2  T     1:24PM   0:00.20 ./Test

My simple test program just prints hello 1000 times.


{hasty} more Test.java
public class Test {
  public static void main (String args[]) {
        for (int i = 1; i < 1000; i++) {
        System.out.println("Hello " + i);
 }      
}
}

It looks like my test program is nearly 4MB ...

	Tnks
	Amancio

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]