Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

AtomicLongArray toString() method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The Java.util.concurrent.atomic.AtomicLongArray.toString() is an inbuilt method in Java that returns a string that textually represents the current values of the AtomicLongArray. The resulting string is a concise and informative representation that is easy for a person to read. It is used to easily print the contents AtomicLongArray as a string object.

Syntax:

public String toString()

Parameters: The function takes no parameter.

Return Value: The function returns the string representation of the current values of AtomicLongArray.

Below programs illustrate the above method:

Program 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());
    }
}

Output:

The array : [1, 2, 3, 4, 5]
The string representation of the array: [1, 2, 3, 4, 5]

Program 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());
    }
}

Output:

The array : [11, 12, 13, 14, 15]
The string representation of the array: [11, 12, 13, 14, 15]

Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLongArray.html#toString–


My Personal Notes arrow_drop_up
Last Updated : 12 Feb, 2019
Like Article
Save Article
Similar Reads
Related Tutorials