Q:

Java program to create a stack with hybrid items using Stack collection

belongs to collection: Java Stack Programs

0

Java program to create a stack with hybrid items using Stack collection

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to create a stack with hybrid items using Stack collection is given below. The given program is compiled and executed successfully.

// Java program to create a stack with hybrid items 
// using Stack collection

import java.io.*;
import java.util.*;

public class Main {
  public static void main(String[] args) {
    Stack stck = new Stack();

    stck.push(1);
    stck.push("Two");
    stck.push(3.14);
    stck.push(true);

    System.out.println("Stack elements: \n" + stck);
  }
}

Output:

Stack elements: 
[1, Two, 3.14, true]

Explanation:

In the above program, we imported the "java.io.*" and "java.util.*" packages to use the Stack collection class. Here, we created a class Main. The Main class contains a main() method. The main() method is the entry point for the program.

In the main() method, we created an object of the Stack collection class to store hybrid elements. And, added elements using the push() method and printed them.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java program to perform push and pop operations in... >>
<< Java program to create a stack using Stack collect...