Adding File

This commit is contained in:
gupta-ashu01 2020-08-24 12:02:02 +05:30 committed by GitHub
parent 935b4c1278
commit 765629be47
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package com.baeldung.array.arraystoreexception;
public class ArrayStoreExampleCE {
public static void main(String[] args) {
//String array[] = new String[5]; //This will lead to compile-time error at line-8 when uncommented
//array[0] = 2;
}
}