Java中的 HashSet toString() 方法与示例
Java HashSet的toString()方法用于返回 Collection 元素的字符串表示形式。
String 表示包含集合元素的集合表示,按迭代器选取的顺序排列在方括号[] 中。此方法主要用于显示 String 类型以外的集合(例如:Object、Integer)一个字符串表示。
句法:
public String toString()
参数该方法不带任何参数。
Return此方法返回集合的字符串表示形式。
下面的示例说明了 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 abs
= new HashSet();
// 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 abs
= new HashSet();
// 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]