arrays java<> code example
Example 1: java string array
// array of 5 strings
String[] arr = new String[5]
arr[0] = "Happy";
arr[1] = "Birthday";
arr[2] = "To";
// etc...
Example 2: arrays in java
int[] arr; // Declaration dataType can int, float etc.
arr = new int[N]; // Allocation N = 0 to 2,147,483,647.