array - can hold many items (elements) of the same type. You can access an item (element) at an index and set an item (element) at an index., array declaration - To declare an array specify the type of elements that will be stored in the array, then ([]) to show that it is an array of that type, then at least one space, and then a name for the array. Examples: int[] highScores; String[] names;, array creation - To create an array type the name and an equals sign then use the new keyword, followed by a space, then the type, and then in square brackets the size of the array (the number of elements it can hold). Example: names = new String[5];, array index - You can access and set values in an array using an index. The first element in an array called arr is at index 0 arr[0]. The last element in an array is at the length minus one - arr[arr.length - 1]., array initialization - You can also initialize (set) the values in the array when you create it. In this case you don’t need to specify the size of the array, it will be determined from the number of values that you specify. Example: int[] highScores = {99,98,98,88,68};, array length - The length of an array is the number of elements it can hold. Use the public length field to get the length of the array. Example: given int[] scores = {1,2,2,1,3,1};, scores.length equals 6., class method - A method that can be called on the class. It is declared using the static keyword. An example is Math.abs(-3)., element reference - A specific element can be referenced by using the name of the array and the element’s index in square brackets. Example: scores[3] will return the 4th element (since index starts at 0, not 1). To reference the last element in an array, use array[array.length - 1], for-each loop - Used to loop through all elements of an array. Each time through the loop the loop variable will be the next element in the array starting with the element at index 0, then index 1, then index 2, etc., out of bounds exception - An error that means that you tried to access an element of the array that doesn’t exist maybe by doing arr[arr.length]. The first valid indices is 0 and the last is the length minus one.,
0%
Chapter 8
Compartir
Compartir
Compartir
por
Ldonlan
G9
G10
G11
G12
CS
Editar contenido...
Imprimir
Incrustar
Más
Tareas
Tabla de clasificación
Mostrar más
Mostrar menos
Esta tabla de clasificación es actualmente privada. Haz clic en
Compartir
para hacerla pública.
Esta tabla de clasificación ha sido desactivada por el propietario del recurso.
Esta tabla clasificación está desactivada, ya que sus opciones son diferentes a las del propietario del recurso.
Revertir opciones
Une las parejas
es una plantilla abierta. No genera puntuaciones para una tabla de clasificación.
Requiere iniciar sesión
Estilo visual
Fuentes
Se necesita una suscripción
Opciones
Cambiar plantilla
Mostrar todo
A medida que juegas a la actividad, aparecerán más formatos.
Resultados abiertos
Copiar enlace
Código QR
Eliminar
¿Restaurar actividad almacenada automáticamente:
?