Monday 4 July 2016

Java Tutorial : Java Exception handling (OutOfMemoryError - Array Size exceeds vm limit)


Click here to watch in Youtube :
https://www.youtube.com/watch?v=5LgQNIYfxTw&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge
Java Tutorial : Java Exception handling (OutOfMemoryError - Array Size exceeds vm limit) 

Java Tutorial : Java Exception handling (OutOfMemoryError - Array Size exceeds vm limit) 
OutOfMemoryErrorDemo.java
public class OutOfMemoryErrorDemo
{

    public static void main(String[] args)
    {
        int[] matrix = new int[Integer.MAX_VALUE];
        
        for(int i = 0; i < matrix.length; ++i)
        {
            matrix[i] = i+1;
        }
    }

}
Output
Exception in thread "main" java.lang.OutOfMemoryError: Requested array size exceeds VM limit
        at OutOfMemoryErrorDemo.main(OutOfMemoryErrorDemo.java:7)
Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/ExceptionDemo_OutOfMemoryError_VMLimit_App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/ExceptionDemo_OutOfMemoryError_VMLimit_App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/4babce59a384cb4ab41f12b03cd7d11227a4b186/BasicJava/ExceptionDemo_OutOfMemoryError_VMLimit_App/?at=master

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • No comments:

    Post a Comment