VOOZH about

URL: https://www.geeksforgeeks.org/java/atomicboolean-tostring-method-in-java-with-examples/

⇱ AtomicBoolean toString() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

AtomicBoolean toString() method in Java with Examples

Last Updated : 27 Feb, 2019
The java.util.concurrent.atomic.AtomicBoolean.toString() is an inbuilt method in java that returns the string representation of the current value which is been stored in the boolean. Syntax:
public String toString()
Parameters: The function does not accepts any parameter. Return Value: The function returns the string representation of the current value. Below programs illustrate the above function: Program 1:
Output:
String value: true
Program 2:
Output:
String value: false
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicBoolean.html#toString--
Comment