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


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


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

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

用法:


public String toString()

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

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

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

示例1:

// Java program to demonstrate 
// HashSet toString() method 
  
import java.util.*; 
  
public class collection { 
    public static void main(String args[]) 
    { 
        // Creating an Empty HashSet 
        HashSet<String> abs 
            = new HashSet<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()); 
    } 
}
輸出:
[Geeks, For, Welcome, To]

示例2:

// Java program to demonstrate 
// HashSet toString() method 
  
import java.util.*; 
  
public class collection { 
    public static void main(String args[]) 
    { 
        // Creating an Empty HashSet 
        HashSet<Integer> abs 
            = new HashSet<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()); 
    } 
}
輸出:
[20, 40, 10, 30]


相關用法


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