0
Difference between objects and instances.
In c++, are there any differences between objects and instance of a class or are they same ?
3 Answers
+ 4
Object of class and instance of class have same meaning they both refer to the object of the class you have made,
You also have instance fields and instance methods both require an objevt before they can used.
You also have class fields and class methods which are bound to the class rather then then the instance of class
+ 1
An object is an instance of a class, and may be called a class instance or class object. (Wikipedia)
+ 1
They are the same in C++.