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


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


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

字符串以Collection的元素組成的集合表示,這些元素由在方括號[]中閉合的迭代器選擇的順序組成。此方法主要用於顯示String類型以外的其他集合(例如,Object,Integer)字符串表示形式。

用法:


public String toString()

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

返回此方法返回集合的String表示形式。

以下示例說明了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 AbstractSet 
        AbstractSet<String> abs 
            = new TreeSet<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]

示例2:

// Java program to demonstrate 
// Abstract Collection toString() method 
  
import java.util.*; 
  
public class collection { 
    public static void main(String args[]) 
    { 
        // Creating an Empty AbstractSet 
        AbstractSet<Integer> abs 
            = new TreeSet<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]


相關用法


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