当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。