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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T21:07:56+00:00 2026-06-18T21:07:56+00:00

Can a function be assigned or alter its definition, just like overriding a function

  • 0

Can a function be assigned or alter its definition, just like overriding a function by derived classes.

But at this time, it is out of scope from the class.

I mean like this:

//class.h

class MClass
{
public:

  void function(); // this is the function I am referring to.
}
//class.cpp

void MClass::function() { }

//file1.cpp
MClass mclass;


void globalFunction() { }

mclass.function = globalFunction; //is this even possible?
  • 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-18T21:07:57+00:00Added an answer on June 18, 2026 at 9:07 pm

    Your function() is a real function, you want function Callback instead.

    see sample program: on ideone

    #include <functional>
    class MClass
    {
    public:
      std::function<void(void)> func_ptr;
    
      void setFuncPtr(const std::function<void(void)>& ptr)
      {
        func_ptr = ptr;
      }
    
      void callFuncPtr()
      {
        func_ptr();
      }
    };
    

    You could set func_ptr to any callabe objet

    MClass m;
    m.setFuncPtr(globalFunction);   // set to standalone function
    m.callFuncPtr();
    
    // set lambda to it
    m.setFuncPtr([](){ std::cout << " do something " << std::endl; });
    m.callFuncPtr();
    

    Or bind to other object

     struct Test
     {
       void print() { std::cout << "Test::print" << std::endl; }
     };
    Test t;
    m.setFuncPtr(std::bind(&Test::print, t));
    m.callFuncPtr();
    

    You could also pass parameter to function by using std::bind and placeholders.

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

Sidebar

Related Questions

Can I figure out if a function has already been assigned to an event?
Can a function in R return not one, but two vectors? (I am really
I can create function pointers in Fortran 90, with code like real, external ::
Possible Duplicate: Can main function call itself in C++? I found this problem very
I know the following function can be used to do some pre-save processing. But,
how can I make this sql query return zero for the count function instead
I know this may sound like a dumb question but I got to know
This is a homework project I was assigned some time ago... I've been successful
Can function argument have hint in cfscript (CF9)? CFML style: <cffunction name=myFunc output=false returntype=void>
can nvl() function be cascaded,...it was asked me in IBM interview .....and why????

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.