I signed up a few moments ago, though I\'ve been making great use of this site since I took up computer programming, which I\'ve been teaching myself and consider a little h
Now, suppose I invoke myMethod(), say, 10 times while running my program, how does that work? Is a new object create every time?
Yes!
Reusing or not reusing an instantiated object depends on the design and situation. There are cases where it's better to reuse objects, in which case you can create a class field to hold on to the reference, and there are cases where it's best to create a new object every time(look into immutability, for instance).