3 followers
I am a passionate developer. Always ready to solve challenging tasks through learning new technologies.
Managing memory is very crucial for stable and efficient C++ applications. Unlike Java, Python or Javascript which automatically identify and dispose...
"Dependency Injection" and "Dependency Inversion" both are very important terms in Software Engineering. Both deal with writing flexible and...
C++ 14 Variable Templates- C++14 allows defining a variable template, which is similar to a function template but defines a variable instead of a...
Understanding the concepts through examples. ยท Both the copy methods are used to copy one object to another object of the same class i.e. to make a...
What are SOLID Principles? They are a set of design principles for object-oriented design which make the different classes of your project loosely...
Association tells about the relationship of one class with another. It generally implies "HAS-A" relationship between two classes. For example,...