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 8054627
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T08:11:32+00:00 2026-06-05T08:11:32+00:00

I am creating a template class in C++, and am using std::list in it.

  • 0

I am creating a template class in C++, and am using std::list in it. For some reason, my compiler doesn’t like how I’m trying to declare and construct an iterator for the list.

In my HashTable.h file I have:

template <typename T> class HashTable {
    bool find(T thing) {
        // some code
        list<T>::iterator iter;
        for (iter = table[index].begin(); iter != table[index].end(); ++iter) {
            // some more code
        }
    }

}

And it gives me HashTable.h:77: error: expected ';' before "iter" as an error message.

What’s the proper syntax for the iterator?

Or is that right, and I need to create an iterator class for each of the classes I intend to use in my HashTable template? If so, that would suck…

  • 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-05T08:11:33+00:00Added an answer on June 5, 2026 at 8:11 am

    You need to use typename to tell the compiler that list<T>::iterator is indeed a type in this context.

    typename list<T>::iterator iter;
    

    The reasons are fairly obscure; see the C++ FAQ for more details: http://www.parashift.com/c++-faq-lite/templates.html#faq-35.18.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Alright, im trying to understand this, so a class is simply creating a template
Using Visual Studio 2010 when creating a wcf service the template creates a class
I have created a type list. I then create a class using a template
I'm looking for some LaTeX template for creating quality output. On R-bloggers I've bumped
I'm trying to create a Vector class using templates to store 3D positions of
Using Qt Creator, I am creating a class with custom slots in Qt: class
I am making an app using a utility application template. I am trying to
With curiosity, I was trying an alternate implementation of is_class construct using the sizeof()
I am creating a KeyValuePair class, and am running into some trouble when overloading
I'm creating a behavior (one template and one listener). In the template class, I'm

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.