Java.util.concurrent.atomic.AtomicIntegerArray.toString () es un método incorporado en Java que devuelve una string que representa textualmente los valores actuales de AtomicIntegerArray. La string resultante es una representación concisa e informativa que es fácil de leer para una persona. Se utiliza para imprimir fácilmente el contenido de AtomicIntegerArray como un objeto de string.
Sintaxis:
public String toString()
Parámetros: La función no toma ningún parámetro.
Valor devuelto: la función devuelve la representación de string de los valores actuales de AtomicIntegerArray.
Los siguientes programas ilustran el método anterior:
Programa 1:
// Java program that demonstrates // the toString() function import java.util.concurrent.atomic.AtomicIntegerArray; public class GFG { public static void main(String args[]) { // Initializing an array int a[] = { 1, 2, 3, 4, 5 }; // Initializing an AtomicIntegerArray // with array a AtomicIntegerArray arr = new AtomicIntegerArray(a); // Displaying the AtomicIntegerArray System.out.println("The array : " + arr); // Displaying the string representation // of AtomicIntegerArray System.out.println("The string representation" + " of the array: " + arr.toString()); } }
Producción:
The array : [1, 2, 3, 4, 5] The string representation of the array: [1, 2, 3, 4, 5]
Programa 2:
// Java program that demonstrates // the toString() function import java.util.concurrent.atomic.AtomicIntegerArray; public class GFG { public static void main(String args[]) { // Initializing an array int a[] = { 11, 12, 13, 14, 15 }; // Initializing an AtomicIntegerArray // with array a AtomicIntegerArray arr = new AtomicIntegerArray(a); // Displaying the AtomicIntegerArray System.out.println("The array : " + arr); // Displaying the string representation // of AtomicIntegerArray System.out.println("The string representation" + " of the array: " + arr.toString()); } }
Producción:
The array : [11, 12, 13, 14, 15] The string representation of the array: [11, 12, 13, 14, 15]
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicIntegerArray.html#toString–