- The for Statement
- Заполнить массив в Java
- Используйте < >для заполнения массива в Java
- Использование цикла for для заполнения массива в Java
- Используйте метод Arrays.copyOf() для заполнения элемента в массиве Java
- Используйте метод Arrays.fill() для заполнения элементов в массиве Java
- Сопутствующая статья — Java Array
- Как заполнить массив числами java
The for Statement
The for statement provides a compact way to iterate over a range of values. Programmers often refer to it as the «for loop» because of the way in which it repeatedly loops until a particular condition is satisfied. The general form of the for statement can be expressed as follows:
for (initialization; termination; increment) < statement(s) >
When using this version of the for statement, keep in mind that:
- The initialization expression initializes the loop; it’s executed once, as the loop begins.
- When the termination expression evaluates to false , the loop terminates.
- The increment expression is invoked after each iteration through the loop; it is perfectly acceptable for this expression to increment or decrement a value.
The following program, ForDemo , uses the general form of the for statement to print the numbers 1 through 10 to standard output:
The output of this program is:
Count is: 1 Count is: 2 Count is: 3 Count is: 4 Count is: 5 Count is: 6 Count is: 7 Count is: 8 Count is: 9 Count is: 10
Notice how the code declares a variable within the initialization expression. The scope of this variable extends from its declaration to the end of the block governed by the for statement, so it can be used in the termination and increment expressions as well. If the variable that controls a for statement is not needed outside of the loop, it’s best to declare the variable in the initialization expression. The names i , j , and k are often used to control for loops; declaring them within the initialization expression limits their life span and reduces errors.
The three expressions of the for loop are optional; an infinite loop can be created as follows:
The for statement also has another form designed for iteration through Collections and arrays This form is sometimes referred to as the enhanced for statement, and can be used to make your loops more compact and easy to read. To demonstrate, consider the following array, which holds the numbers 1 through 10:
The following program, EnhancedForDemo , uses the enhanced for to loop through the array:
class EnhancedForDemo < public static void main(String[] args)< int[] numbers = ; for (int item : numbers) < System.out.println("Count is: " + item); >> >
In this example, the variable item holds the current value from the numbers array. The output from this program is the same as before:
Count is: 1 Count is: 2 Count is: 3 Count is: 4 Count is: 5 Count is: 6 Count is: 7 Count is: 8 Count is: 9 Count is: 10
We recommend using this form of the for statement instead of the general form whenever possible.
Заполнить массив в Java
- Используйте < >для заполнения массива в Java
- Использование цикла for для заполнения массива в Java
- Используйте метод Arrays.copyOf() для заполнения элемента в массиве Java
- Используйте метод Arrays.fill() для заполнения элементов в массиве Java
В зависимости от определения пользователя массив будет примитивным или объектной (или не примитивной) ссылкой на класс.
В массиве примитивных типов данных элементы хранятся в непрерывной области памяти. Напротив, в непримитивном типе данных элементы хранятся в динамической памяти (сегмент кучи).
В этом руководстве мы заполняем массив на Java. Заполнить здесь означает заполнить массив некоторыми значениями.
Используйте < >для заполнения массива в Java
Это основной и один из простейших методов заполнения массива. Фигурные скобки <> используются для определения элементов массива.
import java.util.*; public class Num public static void main(String args[]) int arr[] = 1, 3, 5, 7, 11 >; // Declaration of elements using for (int j = 0; j arr.length; j++) System.out.print(array[j] + " "); > > >
Использование цикла for для заполнения массива в Java
Класс Scanner используется для сканирования элементов массива от пользователя. Запускаем цикл до тех пор, пока на каждой итерации не будет введена длина пользователя и использование объекта элементов класса Scanner .
import java.util.Scanner; public class ArrayInputUsingLoop public static void main(String[] args) int number; Scanner obj=new Scanner(System.in); System.out.print("Total number of elements: "); number=obj.nextInt(); int[] array = new int[20]; System.out.println("Enter the elements of the array: "); for(int i=0; inumber; i++) array[i]=obj.nextInt(); //reads elements from the user > System.out.println("Array elements you entered are: "); for (int i=0; inumber; i++) System.out.println(array[i]); > > >
Total number of elements: 5 Enter the elements of the array: 5 4 3 2 1 Array elements you entered are: 5 4 3 2 1
Используйте метод Arrays.copyOf() для заполнения элемента в массиве Java
Метод Array.copyOf() относится к классу java.util.Arrays . Эта функция копирует конкретный массив и усекает его нулями или нулевыми значениями, если необходимо, чтобы сохранить заданную длину копируемого массива.
Для всех допустимых индексов в исходном и скопированном массивах будут одинаковые значения.
import java.util.Arrays; public class Main public static void main(String[] args) int[] array1 = new int[] 8,9,10,11,12>; System.out.println("First array is:"); for (int i = 0; i array1.length; i++) System.out.println(array1[i]); > int[] array2 = Arrays.copyOf(array1, 7); array2[5] = 6; array2[6] = 7; System.out.println("New array after copying elements is:"); for (int i = 0; i array2.length; i++) System.out.println(array2[i]); > > >
First array is: 8 9 10 11 12 New array after copying elements is: 8 9 10 11 12 6 7
Если длина превышает исходный массив, то дополнительные элементы компенсируются значением 0.
import java.util.Arrays; public class ArrayCopy public static void main(String args[]) int[] originalarray = new int[] 7, 8, 9>; System.out.println("The Original Array is : \n"); for (int i = 0; i originalarray.length; i++) System.out.print(originalarray[i] + " "); int[] copyarray = Arrays.copyOf(originalarray, 5); System.out.print("\nNew Array copy of greater length is:\n"); for (int i = 0; i copyarray.length; i++) System.out.print(copyarray[i] + " "); > >
The Original Array is : 7 8 9 New Array copy of greater length is: 7 8 9 0 0
Используйте метод Arrays.fill() для заполнения элементов в массиве Java
Метод Arrays.fill() относится к классу java.util.Arrays .
Используя этот метод, мы можем заменить все элементы в данном массиве вновь введенным элементом. Все позиции массива будут заменены или заполнены значением указанного элемента.
import java.util.Arrays; public class ArrayFill public static void main(String[] args) int array[] = 6, 7, 8, 9, 10>; Arrays.fill(array, 5); System.out.println(Arrays.toString(array)); > >
Исходный массив можно частично заполнить новыми элементами, указав индекс.
import java.util.Arrays; public class ArrayFill2 public static void main(String[] args) int array[] = 7, 8, 9, 10, 11>; Arrays.fill(array, 2, 5, 0); // Replace elements from index 2 to index 4 by 0 System.out.println(Arrays.toString(array)); > >
Сопутствующая статья — Java Array
Как заполнить массив числами java
Заполнить массив числами можно с помощью циклов, стримов. Рассмотрим вариант со стримами:
int size = 10; // Размерность массива int[] array = new int[size]; // Создаем массив с заданной размерностью IntStream.range(0, size) // С помощью стрима проходим по всему массиву // Заносим число в ячейку массива // Число будет равняться значению индекса массива .forEach(index -> array[index] = index); // Выводим массив в консоль System.out.print(Arrays.toString(array)); // => [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]