Friday, June 28, 2024
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–

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments