Open In App

AtomicReferenceArray toString() method in Java with Examples

Last Updated : 03 Jan, 2020
Comments
Improve
Suggest changes
13 Likes
Like
Report
The toString() method of a AtomicReferenceArray class is used to return the String representation of the current values of array.This method is used to represent the contents of AtomicReferenceArray as string Syntax:
public String toString()
Parameters: This method accepts nothing. Return value: This method returns the String representation of the current values of array. Below programs illustrate the toString() method: Program 1:
Output:
String representation of AtomicReferenceArray:
[234, 134, 325, null, null]
Program 2:
Output:
String representation of AtomicReferenceArray:
[AMAN, AMAR, SURAJ]
References: https://docs.oracle.com/javase/10/docs/api/java/util/concurrent/atomic/AtomicReferenceArray.html#toString()

Next Article

Similar Reads