This is the mail archive of the
java-discuss@sourceware.cygnus.com
mailing list for the Java project.
Memory footprint ?
- To: java-discuss@sourceware.cygnus.com
- Subject: Memory footprint ?
- From: Amancio Hasty Jr <hasty@netcom.com>
- Date: Fri, 11 Jun 1999 13:28:50 -0700 (PDT)
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