So I recently learned how to use classes and I am unsure about what is the best way to change a field in a class while in that class?
What I mean is I know that when I'm changing it in another class, I would do something like example.setX(0) to change the X value in that class since it is a private variable. But what is the better way to change the value using the code inside that class, should I just do x = 0, or setX(0), or this.setX(0)? What is the more recognized way of doing this?