Why can't we use "this" inside the class? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T03:41:45Zhttp://stackoverflow.com/feeds/question/467851http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/467851/why-cant-we-use-this-inside-the-class2Why can't we use "this" inside the class?mkal2009-01-22T02:19:10Z2009-02-06T12:29:10Z
<p>E,g </p>
<pre><code>class Test {
public:
void setVal(const std::string& str) {
this.isVal = str; //This will error out
}
private:
string isVal;
};
</code></pre>
http://stackoverflow.com/questions/467851/why-cant-we-use-this-inside-the-class/467853#46785329Answer by Chris Jester-Young for Why can't we use "this" inside the class?Chris Jester-Young2009-01-22T02:21:12Z2009-01-22T02:21:12Z<p>In C++, <code>this</code> is a pointer (as opposed to a reference). So you have to say <code>this->isVal</code> instead.</p>
http://stackoverflow.com/questions/467851/why-cant-we-use-this-inside-the-class/467860#46786014Answer by FryGuy for Why can't we use "this" inside the class?FryGuy2009-01-22T02:23:56Z2009-01-22T03:03:44Z<p>Adding to <a href="http://stackoverflow.com/questions/467851/why-cant-we-use-this-inside-the-class#467853">Chris's answer</a>, you can also do:</p>
<pre><code>(*this).isVal = str;
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/467851/why-cant-we-use-this-inside-the-class/467876#4678767Answer by sth for Why can't we use "this" inside the class?sth2009-01-22T02:35:48Z2009-01-22T02:35:48Z<p>You also don't really need to use <code>this</code> explicitly to access member variables/methods. You can simply say:</p>
<pre><code>isVal = str;
</code></pre>
http://stackoverflow.com/questions/467851/why-cant-we-use-this-inside-the-class/520117#5201170Answer by lsalamon for Why can't we use "this" inside the class?lsalamon2009-02-06T12:29:10Z2009-02-06T12:29:10Z<p>For design scope you can use so :<br></p>
<p>Test::isVal = str;</p>