This method is used to Pushes an item onto the top of this stack.
Syntax:Library: java.util.Stack
public Object push(Object item)
Example:package com.tutorialspoint;
import java.util.*;
public class StackDemo {
public static void main(String args[]) {
// creating stack
Stack st = new Stack();
// populating stack
st.push("Java");
st.push("Source");
st.push("code");
// checking elements
System.out.println("Elements in the stack: "+st);
}
}
Output:
Elements in the stack: [Java, Source, code]
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 190 / 158763854. Delta: 0.00334 с