up vote 2 down vote favorite
share [g+] share [fb]

E,g

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

  private:

      string isVal;
};
link|improve this question

64% accept rate
feedback

4 Answers

up vote 30 down vote accepted

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

link|improve this answer
feedback

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|improve this answer
Why was this down-voted? It's perfectly legal... (Ignoring possible operator overloads.) – strager Jan 22 '09 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 '09 at 2:29
...use trigraphs? :-P :-P :-P – Chris Jester-Young Jan 22 '09 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 '09 at 2:33
1  
Well I think this kind of answer with out explanation especially for someone who is obviously a beginner isn't that great of an answer. That could just be me though. – Adam Peck Jan 22 '09 at 2:37
show 8 more comments
feedback

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

isVal = str;
link|improve this answer
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 '09 at 6:13
feedback

For design scope you can use so :

Test::isVal = str;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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