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


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


JavaAbstractClass 的 toString() 方法用於返回 Collection 元素的字符串表示形式。

String 表示形式包含 Collection 元素的列表表示形式,按迭代器選取的順序排列在方括號[] 中。此方法主要用於顯示 String 類型以外的集合(例如:Object、Integer)一個字符串表示。

用法:

Object.toString();

參數該方法不帶任何參數。

Return此方法返回集合的字符串表示形式。



以下示例說明了 toString() 方法:

範例1:


// Java program to demonstrate
// Abstract Collection toString() method
  
import java.util.*;
  
public class collection {
    public static void main(String args[])
    {
        // Creating an Empty AbstractCollection
        AbstractCollection<String> abs
            = new PriorityQueue<String>();
  
        // Use add() method
        // to add elements to the Collection
        abs.add("Welcome");
        abs.add("To");
        abs.add("Geeks");
        abs.add("For");
        abs.add("Geeks");
  
        // Using toString() method
        System.out.println(abs.toString());
    }
}
輸出:
[For, Geeks, To, Welcome, Geeks]

範例2:


// Java program to demonstrate
// Abstract Collection toString() method
  
import java.util.*;
  
public class collection {
    public static void main(String args[])
    {
        // Creating an Empty AbstractCollection
        AbstractCollection<Integer> abs
            = new PriorityQueue<Integer>();
  
        // Use add() method
        // to add elements to the Collection
        abs.add(10);
        abs.add(20);
        abs.add(30);
        abs.add(40);
  
        // Using toString() method
        System.out.println(abs.toString());
    }
}
輸出:
[10, 20, 30, 40]

參考: https://docs.oracle.com/javase/9/docs/api/java/util/AbstractCollection.html#toString-




相關用法


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