Одно из важных свойств, которым обладают массивы, является свойство length, возвращающее длину массива, то есть количество элементов в массиве:
int[] nums = new int[] {1, 2, 3, 4};
int length = nums.length;
System.out.println(length); //4
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.