CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Apr 2007
    Location
    Mars NASA Station
    Posts
    1,436

    Thumbs down Callback and Functors

    Hello to all, does any on have any good resourced on these topic ?

    Book or website are welcome.

    I also looking for mem_func().

    Thanks.
    Thanks for your help.

  2. #2
    Join Date
    Jul 2002
    Location
    Portsmouth. United Kingdom
    Posts
    2,727

    Re: Callback and Functors

    "It doesn't matter how beautiful your theory is, it doesn't matter how smart you are. If it doesn't agree with experiment, it's wrong."
    Richard P. Feynman

  3. #3
    Join Date
    Apr 2007
    Location
    Mars NASA Station
    Posts
    1,436

    Re: Callback and Functors

    How about book that emphasis on functor , STL(std::mem_fun) and callback ?

    Thanks.
    Thanks for your help.

  4. #4
    Join Date
    Nov 2006
    Posts
    1,611

    Re: Callback and Functors

    I think "Beyond the STL, an introduction to boost" has some interesting coverage relative to their libraries that address the subject.
    If my post was interesting or helpful, perhaps you would consider clicking the 'rate this post' to let me know (middle icon of the group in the upper right of the post).

  5. #5
    Join Date
    Aug 2005
    Location
    San Diego, CA
    Posts
    1,054

    Lightbulb Re: Callback and Functors

    Quote Originally Posted by Peter_APIIT View Post
    How about book that emphasis on functor , STL(std::mem_fun) and callback ?

    Thanks.
    How about "Effective STL" by Scott Meyers. I have found very good information within this book on functors. The concept of functors is very simple so what you probably need is a book that really explains how to use them more effectively.

    This link might be useful for you. I find that the best way to learn about functors is to compile and run the examples that demonstrate how they work.
    http://www.cplusplus.com/reference/std/functional/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured