Q:

Java program to add a Stack collection into another Stack collection

belongs to collection: Java Stack Programs

0

Java program to add a Stack collection into another Stack collection

All Answers

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

In this program, we will create 2 Stack Collections with a few elements. Then we will add a stack collection into another Stack collection using the addAll() method.

Program/Source Code:

The source code to add a Stack collection into another Stack collection is given below. The given program is compiled and executed successfully.

// Java program to add a Stack collection into 
// another Stack collection

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

public class Main {
  public static void main(String[] args) {
    Stack < Integer > stack = new Stack < Integer > ();

    stack.push(10);
    stack.push(20);
    stack.push(30);
    stack.push(40);

    System.out.println("The Stack is: " + stack);

    Stack < Integer > c = new Stack < Integer > ();
    c.add(50);
    c.add(60);
    c.add(70);
    c.add(80);

    stack.addAll(c);

    System.out.println("The Stack is: " + stack);
  }
}

Output:

The Stack is: [10, 20, 30, 40]
The Stack is: [10, 20, 30, 40, 50, 60, 70, 80]

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 2 Stack collections stackc, and add elements. Then we added the c stack collection into the stack collection using the addAll() method and printed the result.

 

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

total answers (1)

Java program to add an ArrayList into Stack collec... >>
<< Java program to traverse a Stack collection using ...