Thursday, February 5, 2026
HomeLanguagesJavaAtomicBoolean toString() method in Java with Examples

AtomicBoolean toString() method in Java with Examples

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:




// Java program that demonstrates
// the toString() function
  
import java.util.concurrent.atomic.AtomicBoolean;
  
public class GFG {
    public static void main(String args[])
    {
  
        // Initially value as true
        AtomicBoolean val
            = new AtomicBoolean(true);
  
        String s = val.toString();
  
        // Prints the string value
        System.out.println("String value: "
                           + s);
    }
}


Output:

String value: true

Program 2:




// Java program that demonstrates
// the toString() function
  
import java.util.concurrent.atomic.AtomicBoolean;
  
public class GFG {
    public static void main(String args[])
    {
  
        // Initially value as false
        AtomicBoolean val
            = new AtomicBoolean(false);
  
        String s = val.toString();
  
        // Prints the string value
        System.out.println("String value: "
                           + s);
    }
}


Output:

String value: false

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

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32489 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6861 POSTS0 COMMENTS
Nicole Veronica
11983 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12071 POSTS0 COMMENTS
Shaida Kate Naidoo
6994 POSTS0 COMMENTS
Ted Musemwa
7234 POSTS0 COMMENTS
Thapelo Manthata
6946 POSTS0 COMMENTS
Umr Jansen
6928 POSTS0 COMMENTS