- Java Data Structures Resources
- Java Data Structures - Quick Guide
- Java Data Structures - Resources
- Java Data Structures - Discussion
Clearing the elements of a Stack
The clear() method of the Stack class is used to clear the contents of the current stack.
Example
import java.util.Stack;
public class ClearingElements {
public static void main(String[] args) {
Stack stack = new Stack();
stack.push(455);
stack.push(555);
stack.push(655);
stack.push(755);
stack.push(855);
stack.push(955);
System.out.println("Contents of the stack :"+stack);
stack.clear();
System.out.println("Contents of the stack after clearing the elements :"+stack);
}
}
Output
Contents of the stack :[455, 555, 655, 755, 855, 955] Contents of the stack after clearing the elements :[]
Advertisements