Why can't we use "this" inside the class? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T03:41:45Z http://stackoverflow.com/feeds/question/467851 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/467851/why-cant-we-use-this-inside-the-class 2 Why can't we use "this" inside the class? mkal 2009-01-22T02:19:10Z 2009-02-06T12:29:10Z <p>E,g </p> <pre><code>class Test { public: void setVal(const std::string&amp; 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#467853 29 Answer by Chris Jester-Young for Why can't we use "this" inside the class? Chris Jester-Young 2009-01-22T02:21:12Z 2009-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-&gt;isVal</code> instead.</p> http://stackoverflow.com/questions/467851/why-cant-we-use-this-inside-the-class/467860#467860 14 Answer by FryGuy for Why can't we use "this" inside the class? FryGuy 2009-01-22T02:23:56Z 2009-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#467876 7 Answer by sth for Why can't we use "this" inside the class? sth 2009-01-22T02:35:48Z 2009-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#520117 0 Answer by lsalamon for Why can't we use "this" inside the class? lsalamon 2009-02-06T12:29:10Z 2009-02-06T12:29:10Z <p>For design scope you can use so :<br></p> <p>Test::isVal = str;</p>