Java.util.concurrent.atomic.AtomicLongArray.toString () es un método incorporado en Java que devuelve una string que representa textualmente los valores actuales de AtomicLongArray. 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 AtomicLongArray como un objeto de string.
Sintaxis:
String pública a String()
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 AtomicLongArray.
Los siguientes programas ilustran el método anterior:
Programa 1:
// Java program that demonstrates // the toString() function import java.util.concurrent.atomic.AtomicLongArray; public class GFG { public static void main(String args[]) { // Initializing an array long a[] = { 1, 2, 3, 4, 5 }; // Initializing an AtomicLongArray // with array a AtomicLongArray arr = new AtomicLongArray(a); // Displaying the AtomicLongArray System.out.println("The array : " + arr); // Displaying the string representation // of AtomicLongArray System.out.println("The string representation" + " of the array: " + arr.toString()); } }
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.AtomicLongArray; public class GFG { public static void main(String args[]) { // Initializing an array long a[] = { 11, 12, 13, 14, 15 }; // Initializing an AtomicLongArray // with array a AtomicLongArray arr = new AtomicLongArray(a); // Displaying the AtomicLongArray System.out.println("The array : " + arr); // Displaying the string representation // of AtomicLongArray System.out.println("The string representation" + " of the array: " + arr.toString()); } }
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/AtomicLongArray.html#toString–
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA