Use 'this' Explicitly to Access Class Members (UTE)

Description:

You should use 'this' explicitly when trying to access class members. Often, using the same class member names with parameters names makes it unclear what you are referring to.

Example:

class UTETACM {
    int attr = 10;
    void func () {
        // do something
    }
    void oper () {
        func(); 
        attr = 20; 
    }
}