#include "Singleton.h"
#include "PlainClass.h"
int main() {
// Get the first instance of Singleton
Singleton* singleton1 = Singleton::Instance();
singleton1->ShowMessage();
// Get another instance of Singleton
Singleton* singleton2 = Singleton::Instance();
// Verify that both Singleton instances are the same
if (singleton1 == singleton2) {
std::cout << "Both Singleton instances are the SAME object." << std::endl;
} else {
std::cout << "ERROR: Singleton instances are different! (This should not happen)" << std::endl;
}
std::cout << "\n--- Creating PlainClass instances ---" << std::endl;
// Create two separate instances of PlainClass
PlainClass* plain1 = new PlainClass();
PlainClass* plain2 = new PlainClass();
// Verify that they are different objects
if (plain1 == plain2) {
std::cout << "ERROR: PlainClass instances are the same! (This should not happen)" << std::endl;
} else {
std::cout << "PlainClass instances are DIFFERENT objects." << std::endl;
}
// Clean up allocated memory
delete plain1;
delete plain2;
return 0;
}
Singleton instance created.
Hello from Singleton!
Both Singleton instances are the SAME object.
--- Creating PlainClass instances ---
PlainClass instance created.
PlainClass instance created.
PlainClass instances are DIFFERENT objects.
No comments:
Post a Comment