當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java AtomicLong toString()用法及代碼示例


Java.util.concurrent.atomic.AtomicLong.toString()是Java中的一種內置方法,該方法返回存儲在AtomicLong中的當前值的字符串表示形式。

用法:

public String toString()

參數:該函數不接受任何參數。


返回值:該函數返回當前值的字符串表示形式。

以下示例程序旨在說明上述方法:

示例1:

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

示例2:

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

參考: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLong.html#toString–



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 AtomicLong toString() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。