show/hide this revision's text 2 edited tags
show/hide this revision's text 1

Why can't we use "this" inside the class?

E,g

class Test {
  public:
      void setVal(const std::string& str) {
           this.isVal = str; //This will error out
      }

  private:

      string isVal;
};