Difference between Object and instance : C++
问题 I followed a number of posts on SO, and finally I can draw a conclusion that when we have something like : Person name; name is an object of class person . It becomes instance when instantiate it : name=new Person(); I am a beginner in C++, and so far I have seen we can access the functions and variables like: Person name; name.getValue; name.callFunction(); We need not to use new operator for this. So can we say the differentiating factor between an object and instance can be ignored in C++?