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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T09:27:17+00:00 2026-06-14T09:27:17+00:00

This method: void LRU::displayQueue() const { for(iter = m_buffer.begin(); iter != m_buffer.end(); ++iter) std::cout

  • 0

This method:

void LRU::displayQueue() const
{
   for(iter = m_buffer.begin(); iter != m_buffer.end(); ++iter)
      std::cout << (*iter) << " ";
   std:: cout << std::endl;
}

results in the following error:

lru.cpp:58: error: passing 'const std::_Deque_iterator<int, const int&, const int*>' as    'this' argument of 'std::_Deque_iterator<int, const int&, const int*>& std::_Deque_iterator<int, const int&, const int*>::operator=(const std::_Deque_iterator<int, const int&, const int*>&)' discards qualifiers

m_buffer and iter are declared in my header file, where the buffer is declared as a deque of type int and iter is a constant iterator:

// ...

std::deque<int> m_buffer;
std::deque<int>::const_iterator iter;

// ...

Removing the const in the displayQueue method will eliminate the compiler error, but since this function shouldn’t modify any data in the deque, I want to make this explicit by keeping my code “const-correct”. Why would this result in an error, when my iterator is a const_iterator?

  • 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-14T09:27:18+00:00Added an answer on June 14, 2026 at 9:27 am

    You’re modifying the object by setting the value of your const iterator member variable, thus invalidating the const restriction of your function. Use a local variable.

    A const_iterator only means the iterator cannot modify the sequence, but you’re not modifying the sequence, you modifying the member variable iterator itself.

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

Sidebar

Related Questions

When I call this method: - (void)method:(int)i { while (image[i].center.y <= 100) { image[i].center
I am using this method - (void)keyboardWillShow:(NSNotification *)notification that is triggered when the keyboard
I currently have this method: -(void)seperateGuides { DLog(GetGuideListCount: %i, [[appDelegate getGuideList] count]); columnOneArray =
With this method declaration (no overloads): void Method(double d) { // do something with
I have this method: public void testJSNI2(){ String x = test; } I can
click the button to call this method: private void goRegister(final boolean isUsername) { new
in this sample method/message: -(void) setNumerator:(int) n { numerator = n; } What does
I have this method: internal static void AssignNewArrayItem(ref Xml.CLASSNAME[] Items, Xml.CLASSNAME Item) { if
I have a thread with this run method: public void run(){ MAPTable t1 =
I'm trying to use that method this way: public void Method() { ThreadPool.QueueUserWorkItem(() =>

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.