top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is Java Heap space?

+1 vote
230 views
What is Java Heap space?
posted Mar 31, 2016 by Vijay

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

To make things more complex, Java memory is separated into two different regions. These regions are called Heap space and Permgen (for Permanent Generation): The size of those regions is set during the Java Virtual Machine (JVM) launch and can be customized by specifying JVM parameters -Xmx and -XX:MaxPermSize.

answer Mar 31, 2016 by Karthick.c
...