📌  相关文章
📜  Java中的 AtomicIntegerArray toString() 方法及示例

📅  最后修改于: 2022-05-13 01:55:39.879000             🧑  作者: Mango

Java中的 AtomicIntegerArray toString() 方法及示例

Java.util.concurrent.atomic.AtomicIntegerArray.toString()是Java中的一个内置方法,它返回一个字符串,该字符串以文本形式表示 AtomicIntegerArray 的当前值。生成的字符串是一种简洁且信息丰富的表示,易于人们阅读。它用于轻松地将内容 AtomicIntegerArray 打印为字符串对象。

句法:

public String toString()

参数:该函数不带参数。

返回值:该函数返回 AtomicIntegerArray 的当前值的字符串表示形式。

下面的程序说明了上述方法:

方案一:

// Java program that demonstrates
// the toString() function
  
import java.util.concurrent.atomic.AtomicIntegerArray;
  
public class GFG {
    public static void main(String args[])
    {
        // Initializing an array
        int a[] = { 1, 2, 3, 4, 5 };
  
        // Initializing an AtomicIntegerArray
        // with array a
        AtomicIntegerArray arr
            = new AtomicIntegerArray(a);
  
        // Displaying the AtomicIntegerArray
        System.out.println("The array : "
                           + arr);
  
        // Displaying the string representation
        // of AtomicIntegerArray
        System.out.println("The string representation"
                           + " of the array: "
                           + arr.toString());
    }
}
输出:
The array : [1, 2, 3, 4, 5]
The string representation of the array: [1, 2, 3, 4, 5]

方案二:

// Java program that demonstrates
// the toString() function
  
import java.util.concurrent.atomic.AtomicIntegerArray;
  
public class GFG {
    public static void main(String args[])
    {
        // Initializing an array
        int a[] = { 11, 12, 13, 14, 15 };
  
        // Initializing an AtomicIntegerArray
        // with array a
        AtomicIntegerArray arr
            = new AtomicIntegerArray(a);
  
        // Displaying the AtomicIntegerArray
        System.out.println("The array : " + arr);
  
        // Displaying the string representation
        // of AtomicIntegerArray
        System.out.println("The string representation"
                           + " of the array: "
                           + arr.toString());
    }
}
输出:
The array : [11, 12, 13, 14, 15]
The string representation of the array: [11, 12, 13, 14, 15]

参考: https: Java/util/concurrent/atomic/AtomicIntegerArray.html#toString–