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

  • Home
  • SEARCH
  • 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 317867
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T08:31:01+00:00 2026-05-12T08:31:01+00:00

I think the problem is pretty common. You have some input string, and have

  • 0

I think the problem is pretty common. You have some input string, and have to call a function depending on the content of the string. Something like a switch() for strings.
Think of command line options.

Currently I am using:

using std::string;

void Myclass::dispatch(string cmd, string args) {
    if (cmd == "foo")
        cmd_foo(args);
    else if (cmd == "bar")
        cmd_bar(args);
    else if ...
        ...
    else
       cmd_default(args);
}

void Myclass::cmd_foo(string args) {
...
}

void Myclass::cmd_bar(string args) {
...
}

and in the header

class Myclass {
    void cmd_bar(string args);
    void cmd_foo(string args);
}

So every foo and bar I have to repeat four (4!) times. I know I can feed the function pointers and strings to an static array before and do the dispatching in a loop, saving some if…else lines. But is there some macro trickery (or preprocessor abuse, depending on the POV), which makes is possible to somehow define the function and at the same time have it update the array automagically?
So I would have to write it only twice, or possibly once if used inline?

I am looking for a solution in C or C++.

  • 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-12T08:31:02+00:00Added an answer on May 12, 2026 at 8:31 am

    The ugly macro solution, which you kind-of asked for. Note that it doesn’t automatically register, but it does keep some things synchronized, and also will cause compile errors if you only add to mappings, and not the function in the source file.

    Mappings.h:

    // Note: no fileguard
    // The first is  the text string of the command, 
    // the second is the function to be called, 
    // the third is the description.
    UGLY_SUCKER( "foo", cmd_foo, "Utilize foo." );
    UGLY_SUCKER( "bar", cmd_bar, "Turn on bar." );
    

    Parser.h:

    class Myclass {
    ...
    protected:
        // The command functions
        #define UGLY_SUCKER( a, b, c ) void b( args )
        #include Mappings.h
        #undef UGLY_SUCKER
    };
    

    Parser.cpp:

    void Myclass::dispatch(string cmd, string args) {
        if (cmd == "")
            // handle empty case
    #define UGLY_SUCKER( a, b, c ) else if (cmd == a) b( args )
    #include Mappings.h
    #undef UGLY_SUCKER
        else
           cmd_default(args);
    }
    
    void Myclass::printOptions() {
    #define UGLY_SUCKER( a, b, c ) std::cout << a << \t << c << std::endl
    #include Mappings.h
    #undef UGLY_SUCKER
    }
    
    void Myclass::cmd_foo(string args) {
    ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 206k
  • Answers 206k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer My first question would be do you really need it… May 12, 2026 at 9:06 pm
  • Editorial Team
    Editorial Team added an answer Double quotes in the value of the value attribute of… May 12, 2026 at 9:06 pm
  • Editorial Team
    Editorial Team added an answer The DOM way of converting HTMLDocument object to XML is:… May 12, 2026 at 9:06 pm

Related Questions

We're developing quite a big application using ASP.NET MVC and at the beginning we
I am planning out some work to introduce Dependency Injection into what is currently
I know I'll get a thousand Depends on what you're trying to do answers,
It seems pretty common to want to let your javascript know a particular dom

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.