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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:51:00+00:00 2026-05-28T00:51:00+00:00

In some languages (PHP and JavaScript come to mind), I can use a variable

  • 0

In some languages (PHP and JavaScript come to mind), I can use a variable as a function. For example:

PHP: Class::$var_function();

Is it possible to this in C++ in a way that doesn’t require a switch or if statement?

  • 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-28T00:51:00+00:00Added an answer on May 28, 2026 at 12:51 am

    James’ answer is probably the best. But, if you’re using a c++11 compatible compiler, you can alternately use std::function

    For example:

    #include <functional>
    #include <iostream>
    typedef std::function<void(int a)> callback_t;
    
    class A {
    public:
       void fn(int a) { std::cout << a << std::endl; }
    };
    
    void fn2(int b) { std::cout << a << std::endl; }
    
    int main() {
       A a;
       callback_t c = std::bind(&A::fn, a, std::placeholders::_1);
       c(1);
    
       c = fn2;
       c(2);
    
       return 0;
    }
    

    And a boost version (I’ve never used this so it may be wrong):

    #include <boost/function.hpp>
    #include <iostream>
    typedef boost::function<void(int a)> callback_t;
    
    class A {
    public:
       void fn(int a) { std::cout << a << std::endl; }
    };
    
    void fn2(int b) { std::cout << a << std::endl; }
    
    int main() {
       A a;
       callback_t c = boost::bind(&A::fn, a, boost::placeholders::_1);
       c(1);
    
       c = fn2;
       c(2);
    
       return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know some languages allow this. Is it possible in C++?
I think that some newer languages like JS can do this natively, but I
I know some higher level languages, all web based (PHP, javascript, some python). I've
I know that some other languages, such as PHP , support a concept of
In some languages you can override the new keyword to control how types are
I use PHP and JavaScript in my project, which I entirely code with netbeans
is the regexp the same between languages? for example. if i want to use
I am writing some bottom-up parsers for PHP, JavaScript, and CSS. Preferably, I would
Do any browser vendors support the use of any scripting languages besides text/javascript text/vbscript
I'm currently writing a web application in HTML5/Javascript and PHP. Some employees of the

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.