Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9018133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T04:26:46+00:00 2026-06-16T04:26:46+00:00

just stumbled upon something i can’t explain. The following code doesn’t compile template<int a>

  • 0

just stumbled upon something i can’t explain. The following code doesn’t compile

template<int a>
class sub{
protected:
    int _attr;
};

template<int b>
class super : public sub<b>{
public:
    void foo(){
        _attr = 3;
    }
};

int main(){
    super<4> obj;
    obj.foo();
}

whereas when i change _attr = 3; to this->attr = 3; there seems to be no problem.

Why is that? Are there any cases you must to use this?

I used g++ test.cpp -Wall -pedantic to compile and i get the following error

test.cpp: in member function 'void super<b>::foo()':
test.cpp:11:3: error: '_attr' was not declared in this scope
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T04:26:49+00:00Added an answer on June 16, 2026 at 4:26 am

    Why is that? Are there any cases you must to use this?

    Yes, there are some cases where you need to use this. In your example, when the compiler sees _attr, it tries to look for _attr inside the class and cannot find it. By adding this-> you delay lookup until instantiation time which allows the compiler to find it inside of sub.

    Another very common reason to use this is to resolve ambiguity problems:

    void foo (int i)
    {
       this->i = i;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just stumbled upon the following article: http://www.josscrowcroft.com/2011/code/utf-8-multibyte-characters-in-url-parameters-%E2%9C%93/ The article talks about using UTF-8
I just stumbled upon a behavior which surprised me: When writing: int x =
I've just stumbled upon Fabric and the documentation doesn't really make it obvious how
I just read this question and stumbled upon the following quote: Scala treats ==
I just stumbled upon something I've never seen before. In the source of Backbone.js's
I just stumbled upon something i don't quite understand. I know that variables in
I just stumbled upon something in ORACLE SQL (not sure if it's in others),
I've just stumbled upon this problem on the net. It kind of goes something
I stumbled upon an interesting error that I've never seen before, and can't explain
Just stumbled upon this in a borrowed css file - something I've never noticed

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.