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


Java Stack clear()用法及代码示例


Java.util.Stack.clear()方法用于从堆栈中删除所有元素。使用clear()方法仅清除堆栈中的所有元素,而不删除堆栈。换句话说,可以说clear()方法仅用于清空现有堆栈。

用法:

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<String> stack = new Stack<String>(); 
  
        // 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<Integer> stack = new Stack<Integer>(); 
  
        // 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: []


相关用法


注:本文由纯净天空筛选整理自Code_r大神的英文原创作品 Stack clear() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。