I keep hearing the words instances
and objects
, don't they have the same meaning or not?
For example, if I want to initialize an object of a class, I use the new
operator to initialize an object with a class.
Button button = new Button();
I have an object or instance now, don't I?