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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:51:38+00:00 2026-05-20T10:51:38+00:00

I’m working on a C++ class assignment and I’d like some input. I’m not

  • 0

I’m working on a C++ class assignment and I’d like some input. I’m not looking for ‘help’ with my assignment as much as I use class assignments as an excuse to practice writing ‘good’ code, and I’m debating between two solutions to the current problem I’m working on.

I’m storing roughly 4000 values in an STL map. One of the features of this program is to print out every value in my map. I have a class called ‘driver’ that handles the internal logic of the application and holds a reference to the map. I have a separate class for user interface.

What I was going to do was pass a function pointer to my driver, which iterates through the map and calls back to the function in my UI class. Would this be a bad idea performance wise at roughly 4000 function calls? Should I bite the bullet and simply call cout while iterating? I hesitate to do this because I’m trying to keep my user interface completely isolated from my program logic and data. I know in the end it really doesn’t matter as it’s just a class assignment, but assuming hypothetically this is code I would want to maintain in the long run, what would the ‘best’ practice be here?

  • 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-05-20T10:51:39+00:00Added an answer on May 20, 2026 at 10:51 am

    Short answer: don’t worry about it. 4k indirect calls is not a big deal. If you’re worried about performance, do the following:

    • code it up the easy way
    • performance good? done.
    • performance bad? use a profiler, like gprof, to find out why, then fix only what is is needed

    Remember that ‘premature optimization is the root of all evil.’

    Slightly longer version: You could define your call back as follows:

    template <typename IteratorType>
    void my_multi_callback(iterator start, iterator end);
    

    Then, the driver can just pass the appropriate map iterators (describing the range of things to print). The callback then performs the output for every element, so you’re avoiding the repeated indirect function calls.

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

Sidebar

Related Questions

No related questions found

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.