vote up 2 vote down star

E,g

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

  private:

      string isVal;
};
flag

44% accept rate

4 Answers

vote up 29 vote down check

In C++, this is a pointer (as opposed to a reference). So you have to say this->isVal instead.

link|flag
vote up 0 vote down

For design scope you can use so :

Test::isVal = str;

link|flag
vote up 7 vote down

You also don't really need to use this explicitly to access member variables/methods. You can simply say:

isVal = str;
link|flag
personally, I favor explicitly using this, as it allows you to shadow parameter names (which prevents stupid dummy names) and it works with templates and dependent bases. – coppro Jan 22 at 6:13
vote up 14 vote down

Adding to Chris's answer, you can also do:

(*this).isVal = str;

However, it's better to do what Chris said, as it is more orthodox. This is just illustrating that you need to de-reference the pointer before calling methods on it.

link|flag
Why was this down-voted? It's perfectly legal... (Ignoring possible operator overloads.) – strager Jan 22 at 2:27
I'm voting this back up. It's not the way I'd do it but it is legal, and therefore helpful. What happens if your keyboard ">" key is broken and you're on a tight deadline? :-). – paxdiablo Jan 22 at 2:29
...use trigraphs? :-P :-P :-P – Chris Jester-Young Jan 22 at 2:32
(Clearly a facetious comment, because there is no trigraph or digraph that makes the <> characters---but there are ones that use those characters! :-P) – Chris Jester-Young Jan 22 at 2:33
Wow, I didn't think it'd be that controversial. I was just trying to use the non-syntactic-sugar version to illustrate that "this" is a pointer. – FryGuy Jan 22 at 2:34
show 8 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.