Java中的 Stack clear() 方法与示例
Java.util.Stack.clear()方法用于从堆栈中删除所有元素。使用 clear() 方法只会清除 Stack 中的所有元素,不会删除 Stack。换句话说,我们可以说 clear() 方法只用于清空现有的 Stack。
句法:
Stack.clear()
参数:该方法不带任何参数
返回值:该函数不返回任何值。
下面的程序说明了Java.util.Stack.clear() 方法。
示例 1:
// Java code to illustrate clear()
import java.util.*;
public class GFG {
public static void main(String args[])
{
// Creating an empty Stack
Stack stack = new Stack();
// Use add() method to add elements into the Stack
stack.add("Welcome");
stack.add("To");
stack.add("Geeks");
stack.add("4");
stack.add("Geeks");
// Displaying the Stack
System.out.println("Stack: " + stack);
// Clearing the Stack using clear() method
stack.clear();
// Displaying the final Stack after clearing;
System.out.println("The final Stack: " + stack);
}
}
输出:
Stack: [Welcome, To, Geeks, 4, Geeks]
The final Stack: []
示例 2:
// Java code to illustrate clear()
import java.util.*;
public class GFG {
public static void main(String args[])
{
// Creating an empty Stack
Stack stack = new Stack();
// Use add() method to add elements into the Queue
stack.add(10);
stack.add(15);
stack.add(30);
stack.add(20);
stack.add(5);
// Displaying the Stack
System.out.println("Stack: " + stack);
// Clearing the Stack using clear() method
stack.clear();
// Displaying the final Stack after clearing;
System.out.println("The final Stack: " + stack);
}
}
输出:
Stack: [10, 15, 30, 20, 5]
The final Stack: []