When you write
Calculator calculator;
It only means that you're declaring a reference to the object of type Calculator. Reference is not an object, so memory is not allocated.
When you write
new Calculator();
It constructs the object of type Calculator and returns a reference to this object.
So, when you write
Calculator calculator = new Calculator();
It means that you construct the object and store a reference to it in calculator.
'calculator' is not an object, it's only a reference to this object. You can have more than 1 reference to the same object.
Update:
Regarding the title of this topic, creating the instance of class and creating the object are absolutely the same. What you mean is, I believe, declaring a reference to object vs declaring it with inplace assignment (though I'm not exactly sure about terms) :-)