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) |
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; } } }
Exception in thread "main" java.lang.OutOfMemoryError: Requested array size exceeds VM limit at OutOfMemoryErrorDemo.main(OutOfMemoryErrorDemo.java:7)
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:
No comments:
Post a Comment