Java中的 Stack toString() 方法示例
Java Stack的toString()方法用于返回 Collection 元素的字符串表示形式。
String 表示包含集合元素的集合表示,按迭代器选取的顺序排列在方括号[] 中。此方法主要用于显示 String 类型以外的集合(例如:Object、Integer)一个字符串表示。
句法:
public String toString()
参数该方法不带任何参数。
Return此方法返回集合的字符串表示形式。
下面的示例说明了 toString() 方法:
示例 1:
// Java program to demonstrate
// Stack toString() method
import java.util.*;
public class collection {
public static void main(String args[])
{
// Creating an Empty Stack
Stack stack
= new Stack();
// Use add() method
// to add elements to the Collection
stack.add("Welcome");
stack.add("To");
stack.add("Geeks");
stack.add("For");
stack.add("Geeks");
// Using toString() method
System.out.println(stack.toString());
}
}
输出:
[Welcome, To, Geeks, For, Geeks]
示例 2:
// Java program to demonstrate
// Stack toString() method
import java.util.*;
public class collection {
public static void main(String args[])
{
// Creating an Empty Stack
Stack stack
= new Stack();
// Use add() method
// to add elements to the Collection
stack.add(10);
stack.add(20);
stack.add(30);
stack.add(40);
// Using toString() method
System.out.println(stack.toString());
}
}
输出:
[10, 20, 30, 40]