Why is this a pointer to the current GameObject?

Why is the ‘this’-pointer in the update method a pointer to the current GameObject and not a pointer to an instance of the class of my script derived from MonoBehavior?
Thx. (sorry for my bad English)

It’s not. ‘this’ will be a reference to your component. If your findings are different, please add an example script.