Forums before death by AOL, social media and spammers... "We can't have nice things"
|    comp.lang.c++.moderated    |    Moderated discussion of C++ superhackery    |    33,346 messages    |
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
|    Message 32,896 of 33,346    |
|    Edward Diener to Jerry    |
|    Re: currying pointer to member functions    |
|    07 Mar 13 05:36:53    |
   
   d4526246   
   From: eldiener@tropicsoft.invalid   
      
   On 03/05/2013 06:20 PM, Jerry wrote:   
   > I appreciate any advice about how to do this.   
   >   
   > I can make this work:   
   >   
   > struct a   
   > {   
   > int b;   
   > int c() {return b+1;}   
   > int d(int x) {return b+x;}   
   > };   
   >   
   > int main()   
   > {   
   > a m = { 1 }, n = { 2 };   
   > a *ps = &m;   
   > int (a::*pf)() = &a::c;   
   > std::cout << (ps->*pf)() << std::endl;   
   > return 0;   
   > }   
   >   
   > And it runs the function and everything works. But what I want to   
   > do is curry the function so that I can store (ps->*pf) and then   
   > later execute it. So what is the type of &(ps->*pf) ?   
   >   
   > I make a class:   
   >   
   > template
|
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
(c) 1994, bbs@darkrealms.ca