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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T01:21:53+00:00 2026-05-30T01:21:53+00:00

I am making a command prompt in C++. I would like a user to

  • 0

I am making a command prompt in C++. I would like a user to enter a line such as “say something”. This will then be split up so that “say” would be the command name and “something” would be a parameter. So far, so good – this is already working.

I would then like to use the name of the command to call the appropriate method. I could use some kind of look-up table but is there a better method?

  • 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-30T01:21:54+00:00Added an answer on May 30, 2026 at 1:21 am

    probably you need something like map of command keywords and function or method pointers

    #include <string>
    #include <map>
    
    class CmdHandler // our handler class
    {
    public:
        void Handler(const std::string &arg){}//our handler method
    };
    
    
    typedef void (CmdHandler::*MethodPtr)(const std::string &); // make typedef to easily deal with the type of the member-function pointer
    
    std::map<std::string, MethodPtr> my_handlers; // make our method lookup table
    
    int _tmain(int argc, _TCHAR* argv[])
    {
        CmdHandler handler;
        //add a real member-function pointer for the "say" command
        my_handlers.insert(std::make_pair("say", &CmdHandler::Handler));
    
        //look for the handler of command "say" and call it instantly 
        (handler.*my_handlers["say"])("something");
        return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am making this little program using command line arguments, I have like 90%
I'm making a command line tool using Ruby. It will print a lot of
There are several libraries like ncurses that assist in making command-line GUIs. Simply put,
I'm trying to compile a project from the command line, like this: devenv.exe myproj.sln
I'm making an auto-clicker and I can't find what command line will make the
I am making a command line utility. I need to pass around a few
I was messing around with making a command line parser and was wondering what
I'm making a simple command line Hangman game. void Hangman::printStatus() { cout << Lives
I am making a command line interface in Python 3.1.1 using the cmd module.
I'm making a java command line program. How can I change the contents of

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.