Array is defined as data of similar data type. It is defined as data storage method to store information. A array is considered as a group of object with the common attribute. Each object in the array can be addressed individually by subscripting. Array is also defined arrangement of memory cell in RAM.
In this Tutorial we want to describe you a code that help you in understanding a code to get Length of Array. For this we have a class name "Get LengthOfArray".Inside the main method we declared a String array variable name and initialized with respective values. This name is used as data storage medium to store values.
| names.length | The returns you the length of the string array and is printed by System.out.println. |
For loop is used to iterate the list of string array object. Finally the System.out.println is used to print the list of value present in String array variable name.
GetLengthOfArray.java
|
Lanth of array : 6
|
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Get Length of Array
Post your Comment