Neeraj Mishra

A crazy computer and programming lover. He spend most of his time in programming, blogging and helping other programming geeks.

Anonymous Array in Java

An array without name is known as anonymous array in java.  As the array do not have any name so it can be used only once.  Anonymous array is passed as an argument of method.  Anonymous array is created and initialized in the same line. How to Create Anonymous Array in Java? A sample program …

Anonymous Array in Java Read More »

Array in Java (1D)

In this tutorial I will talk about one dimensional array in java. In the next tutorial we will learn about multidimensional array. Array in Java Array is the collection of similar type of data having contiguous memory location.  Due to contiguous memory location the performance becomes fast.  The biggest disadvantage of array is, we can’t …

Array in Java (1D) Read More »