Join 136,121 C++ Programmers for FREE! Get instant access to thousands of C++ experts, tutorials, code snippets, and more! There are 1,757 people online right now. Registration is fast and FREE... Join Now!
an object is just any code within a class which can be instantiated. You can call methods from other objects/classes based on a relative/pointer basis instead of using static calls. The dynamic methods to be reached from other objects need to be public as private are only accessable from within the same class.