Home »
Java »
Java Programs
Java program to add a Stack collection into another Stack collection
Java example to add a Stack collection into another Stack collection.
Submitted by Nidhi, on April 26, 2022
Problem statement
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.
Java program to add a Stack collection into another Stack collection
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 stack, c, and add elements. Then we added the c stack collection into the stack collection using the addAll() method and printed the result.
Java Stack Programs »