Answers for "using constuctors to store values of an array java"

33

how to declare array java

int intArray[];    //declaring array
intArray = new int[20];  // allocating memory to array
//OR
int[] intArray = new int[20]; // combining both statements in one
Posted by: Guest on February-21-2020
0

int

int[] array;

// is equivalent to

int array[];
Posted by: Guest on January-01-1970

Code answers related to "using constuctors to store values of an array java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language