Well, I was reading the jasshelper manual, because I was wondering what "this" meant, and i found this:
Quote:
|
this : A keyword that denotes a pointer to current instance, [normal] methods are instance methods which means that they are called from an already assigned variable/value of that type, and this will point to it. In the above example we use this inside the method to assign x and y, when calling p.move() it ends up modiffying x and y attributes for the struct pointed by p.
|
Could someone clarify please?