Implement the singleton pattern with a twist. First, instead of storing one instance, store two instances. And in every even call of getInstance(), return the first instance and in every odd call of getInstance(), return the second instance.
instances: An array holding the two singleton instances.
callCount: A counter to keep track of how many times getInstance is called.
Private Constructor: Ensures that the class cannot be instantiated directly.
synchronized getInstance: Synchronisation is used to make the method thread-safe. It ensures that only one thread can execute this method at a time, avoiding the creation of multiple instances in a multi-threaded environment.
Modulo Operator (%): Used to alternate between the two singleton instances based on the call count.
Lazy Initialization: The instances are created only when they are first needed.