I have code like the following in my main()
:
myObject.doSomething()
Now, i know that doSomething()
is called as method
.
I want to know what myObject
can be technically named in this context.
First, I thought it could be called as caller
; but then I thought that in common knowledge, the function from the which the call is made is called the caller
- here main
. So what do I call myObject
here?