Java Program to Swap Objects using Swap() Method

This is a Java Program to Interchange Two Employee Objects by Passing them to Swap() Method.

Here we make a swap method to interchange the information of two employees using Employee Objects by passing them to swap() method.

Here is the source code of the Java Program to Interchange Two Employee Objects by Passing them to Swap() Method. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.

  1. public class Swap_Demo
  2. {
  3.     static String emp1, emp2;
  4.     Swap_Demo()
  5.     {
  6.         emp1 = "this is A";
  7.         emp2 = "this is B";
  8.     }
  9.     void swap(String x,String y)
  10.     {
  11.         String res;
  12.         res = x;
  13.         x = y;
  14.         y = res;
  15.         System.out.println("Employee1: "+x);
  16.         System.out.println("Employee2: "+y);
  17.     }
  18.     public static void main(String[] args)
  19.     {
  20.         Swap_Demo obj = new Swap_Demo();
  21.         System.out.println("Before swapping:");
  22.         System.out.println("Employee1:"+emp1);
  23.         System.out.println("Employee2:"+emp2);
  24.         System.out.println("After swapping:");
  25.         obj.swap(emp1,emp2);
  26.     }
  27. }

Output:

$ javac Swap_Demo.java
$ java Swap_Demo
 
Before swapping:
Employee1:this is A
Employee2:this is B
After swapping:
Employee1: this is B
Employee2: this is A

Sanfoundry Global Education & Learning Series – 1000 Java Programs.

advertisement
advertisement

Here’s the list of Best Books in Java Programming, Data Structures and Algorithms.

If you find any mistake above, kindly email to [email protected]

advertisement
advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification contest to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & discussions at Telegram SanfoundryClasses.